总结解决 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.getByIdat org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:235) ~[mybatis-3.5.2.jar:3.5.2]at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.(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*.xmlfalsesrc/main/resources***.xmlfalse
这上部分的解决方法应该能解决大部分的service层报错的问题,但是这上面的方法并不能解决我的问题。通过我继续对其研究,发现在我的一个扫描Mapper配置文件中路径错误
这是由于配置的base-package范围太大,导致service层的接口也被包装了,将base-package的范围缩小到dao层既可以解决了
将其修改到对应的dao层路径后问题就得以解决了