mybatis-plus报错解决:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

这是个小错误也是个蠢错误...

翻译一下报错:

org.apache.ibatis.binding.bindingException:绑定语句无效(未找到)

也就是在mybatis中dao层xxxMapper接口与xxxMapper.xml文件在做映射绑定的时候出现问题,也就是xxxMapper接口无法匹配到操作sql语句的方法id~

解决:

1.检查xml映射文件中标签绑定包名地址是否正确(即namespace的值)

2. 检查xxxMapper接口中的方法,对应xml映射文件中是否有

mybatis-plus报错解决:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)_第1张图片

 mybatis-plus报错解决:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)_第2张图片

上图这两者必须对应~

3.检查