我是靠谱客的博主 愤怒猎豹,最近开发中收集的这篇文章主要介绍SpringBoot中因xml文件位置导致报错Invalid bound statement (not found): com.atguigu.service_edu.mapper.EduCourse,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
此项目中我的Mapper的对应xml文件放在了src/main/java的mapper里,而不是src/resources里
解决办法:
pom中加
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
application.properties中加入
#配置mapper xml文件的路径
mybatis-plus.mapper-locations=classpath:com/atguigu/service_edu/mapper/xml/*.xml
最后
以上就是愤怒猎豹为你收集整理的SpringBoot中因xml文件位置导致报错Invalid bound statement (not found): com.atguigu.service_edu.mapper.EduCourse的全部内容,希望文章能够帮你解决SpringBoot中因xml文件位置导致报错Invalid bound statement (not found): com.atguigu.service_edu.mapper.EduCourse所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复