出现该问题,即说明在Mybatis中:DAO接口与mapper配置文件在做映射绑定的时候出现问题。也就是接口与xml要么是找不到,要么是找到了却匹配不到。
最终排查到的原因是:
xml文件中与dao接口绑定的方法名写错了!
在做映射的时候需要特别注意:
mapper.xml中的绑定的方法名一定要跟dao接口里的方法名完全一致!
ps:
由于mapper.xml文件在编写的过程中无法察觉错误,一个可行的办法是在properties配置文件中将mapper这类文件的日志级别全部修改成debug级别,这样在执行的过程中能够打印出具体的细节。(如下图)
参考链接:https://blog.csdn.net/sundacheng1989/article/details/81630370
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题
原文:https://www.cnblogs.com/aspire4bettertomorrow/p/14940658.html