码迷,mamicode.com
首页 > 移动开发 > 详细

SpringBoot org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): mapper.xxxMapper.xxx() 错误解决

时间:2020-05-01 22:11:39      阅读:378      评论:0      收藏:0      [点我收藏+]

标签:get   ring   LLC   使用   not found   xxx   div   相同   exce   

起因:今天练习 SpringBoot 下 Mybatis 使用的时候报了一个奇怪的错误

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

网上看了一下资料,出现这个问题有两个原因:

  • Mapper  接口内方法和 Mapper 配置文件 内法名不匹配
  • IDEA Mapper 配置文件和 Mapper 同路径,导致测试程序时 target 目录下只有 xxxMapper.class 文件,而缺失 xxxMapper.xml 文件

技术图片

我首先排除了第一种可能性,那么如何解决此问题呢?

 

需要在 resourse 文件下新建 同 Mapper 接口相同的目录层级,并将Mapper 配置文件 copy 过来即可;

技术图片

再次运行程序,问题解决;

技术图片

SpringBoot org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): mapper.xxxMapper.xxx() 错误解决

标签:get   ring   LLC   使用   not found   xxx   div   相同   exce   

原文地址:https://www.cnblogs.com/wdh01/p/12815036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!