Mybatis报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题解决办法汇总(示例代
Posted lenbrother
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题解决办法汇总(示例代相关的知识,希望对你有一定的参考价值。
今天遇到了这个错误:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found),结果查询出来的办法如下:
- mybatis的xml文件的命名空间写错,命名空间应该是xml对应的数据接口类。
例如:类名是com.xxx.dao.MyMapper接口,那么xml就应该配置成; - mybatis的xml文件中没有数据接口类中接口对应的方法,或者方法参数有误。
例如:接口类中定义了public ListlistMyBean(MyBean bean),那么xml中应该有 <select id="listMyBean" parameterType="com.xxx.bean.MyBean" resultType="com.xxx.bean.MyBean"></select>
的标签 - mybatis的xml和数据接口类所在的包一致,或者配置mybatis.mapper-locations参数。
例如: 如果类名是com.xxx.dao.MyMapper接口,那么对应方式的xml有如下配置:
a. xml放在resources目录下的com/xxx/dao/MyMapper的目录下;
b. xml放在resources目录下的指定目录下(例如mapper目录),则在application.xml中指定mybatis.mapper-locations(例如:mybatis.mapper-locations= classpath:/mapper/*.xml)
或者在application.yml中指定
mybatis:
mapper-locations: classpath:/mapper/*.xml
这个样子。
以上是关于Mybatis报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题解决办法汇总(示例代的主要内容,如果未能解决你的问题,请参考以下文章
Caused by: org.xml.sax.SAXParseException: 外部 DTD: 无法读取外部 DTD 'mybatis-generator-config_1_0.dtd
MyBatis插件的用法与源码逻辑及PageHelper相关源码(万字长文干货)