对于这种错误,一般在于mapper接口与xml文件无法绑定。
解决方案:
1.检查xml文件名是否与mapper接口名一致。
2.检查xml文件中namespace是否与mapper接口的全类名一致。(按住ctrl点击能跳转就没问题)
3.是否在主启动类上标注了@MapperScan(“mapper接口所在包的全包名”)或在mapper接口类上标注了@Mapper(两者不能同时使用)
4.检查mapper接口方法名是否与xml文件中id属性一致。
5.如果打包时xml文件没有自动复制到class输出目录的mapper类包下,则需要在pom文件中添加mybatis加载配置文件的配置。
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
6.clean掉target,重新编译。
7.在配置文件中声明xml文件的路径。文章来源:https://www.toymoban.com/news/detail-550589.html
文章来源地址https://www.toymoban.com/news/detail-550589.html
到了这里,关于【报错解决】org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!