欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-07-15 10:45:56
...

今天写spring boot 整合mybatis的时候遇到org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)这个错,找了很久,总结原因是因为扫描不到xxxMapper.xml。

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

解决方法:在application.yml(application.properties)文件里添加

mybatis:
  mapper-locations: classpath:mapping/*.xml

或者直接使用java注解方式,不用xml映射

相关标签: 异常