总结解决 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)方法
问题背景:在做SpringBoot项目的时候,通过controller层调用service层的接口时出现了如下的报错
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.service.UserService.getById
at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) ~[mybatis-3.5.2.jar:3.5.2]
at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:49) ~[mybatis-plus-core-3.2.0.jar:3.2.0]
at com.example.controller.UserController.obj(UserController.java:18) ~[classes/:na]
1.问题原因
通过网上搜索到的报错原因,本质原因是由于dao层(也可以叫做mapper接口)跟mapper.xml文件没有映射,而大部分的原因有如下的几种类型:
- dao层的方法跟mapper.xml的方法不一样
- mapper.xml中的namespace 要写对应的dao层和entity层不一样
- spring配置文件中mybatis与xml文件路径的配置没有写,导致无法映射成功
- 拼写错误导致
2.解决方法
2.1方法1:
Mypatis配置文件有问题,在application.yml添加如下代码:
mybatis-plus:
mapper-locations: classpath*:com/example/mapper/xml/*Mapper.xml
mapper–locations的路径要对应响应 .xml 文件所在路径
2.2方法2:
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
这上部分的解决方法应该能解决大部分的service层报错的问题,但是这上面的方法并不能解决我的问题。通过我继续对其研究,发现在我的一个扫描Mapper配置文件中路径错误
这是由于配置的base–package范围太大,导致service层的接口也被包装了,将base–package的范围缩小到dao层既可以解决了
将其修改到对应的dao层路径后问题就得以解决了
原文地址:https://blog.csdn.net/weixin_44106947/article/details/122910406
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_35232.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。