org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

Posted mzyyxd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)相关的知识,希望对你有一定的参考价值。

 

如果是 某一个mapper找不到执行以下:

1.检查xml文件的namespace是否正确

2.Mapper.java的方法在Mapper.xml中没有,然后执行Mapper的方法会报此

3. Mapper.java的方法返回值是List,而select元素没有正确配置ResultMap,或者只配置ResultType

4. 如果你确认没有以上问题,请任意修改下对应的xml文件,比如删除一个空行,保存.问题解决

5.看下mapper的XML配置路径是否正确

 

如果所有mapper都不好用 :

在pom.xml里添加

<resources>

<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.xml</include>
<include>*.properties</include>
</includes>
</resource>


</resources>

以上是关于org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)的主要内容,如果未能解决你的问题,请参考以下文章

org.apache.ibatis.binding.BindingException原因汇总

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):

org.apache.ibatis.binding.BindingException原因汇总

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):

org.apache.ibatis.binding.BindingException导致的原因