这个错误是因为mybatis和mybatisplus混合使用时,我们的配置文件需要修改成mybatisplus对应的格式,否则就会报错:
mybatis.mapper-locations=classpath:mapper/*Mapper.xml
mybatis.type-aliases-package=com.mybatis.test.entity
改成了这样就好了:
mybatis-plus.mapper-locations=classpath:mapper/*Dao.xml
mybatis-plus.type-aliases-package=com.test.wechat.entity
搞了一个下午的时间,真实崩溃!!!