报错 Invalid bound statement (not found): com.xxx.mapper.xxx

Mybaits-puls项目启动时报错 Invalid bound statement (not found): com.xxx.mapper.xxx
原因
项目启动时未找到mapper中的方法

解决办法:
在springboot或mybaits-puls的配置文件中加上:

mybatis-plus.mapperLocations=classpath:XXX/XXXX/mapper/**/*.xml  

地址最终指向你的xml文件即可

你可能感兴趣的:(报错 Invalid bound statement (not found): com.xxx.mapper.xxx)