解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
程序员文章站
2022-07-13 15:59:25
...
错误提示:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
一般的原因
Mapper interface和xml文件的定义对应不上,需要检查包名,namespace,函数名称等能否对应上。
按以下步骤一一执行:
1、检查xml文件所在的package名称是否和interface对应的package名称一一对应
2、检查xml文件的namespace是否和xml文件的package名称一一对应
3、检查函数名称能否对应上
4、去掉xml文件中的中文注释
5、随意在xml文件中加一个空格或者空行然后保存
注意:
在使用IDEA开发时,如果打包时*Mapper.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>
本人的问题就是IDEA下碰到的,在pom文件中添加mybatis加载配置文件然后就完美解决了,感谢互联网资源~
推荐阅读
-
SpringBoot整合mybatis访问时报错Invalid bound statement (not found)
-
关于oracle PL/SQL存储过程 PLS-00905 object is invalid,statement ignored问题的解决
-
引入mybatis-plus报 Invalid bound statement错误问题的解决方法
-
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):
-
Tomcat中Invalid character found in the request target. The valid characters are defined in RFC 7230解决
-
解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
-
Mybatis之Invalid bound statement
-
Mybatis之Invalid bound statement
-
tomcat异常解决(Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986)
-
解决 Tomcat 报错 java.lang.IllegalArgumentException: Invalid character found in method name.