Mybatis报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题解决办法汇总
2021-03-17 01:26
标签:not 问题 exception apache ica result tty XML res 今天遇到了这个错误:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found),结果查询出来的办法如下: Mybatis报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题解决办法汇总 标签:not 问题 exception apache ica result tty XML res 原文地址:https://www.cnblogs.com/Lenbrother/p/13041785.html
例如:类名是com.xxx.dao.MyMapper接口,那么xml就应该配置成
例如:接口类中定义了public List的标签
例如: 如果类名是com.xxx.dao.MyMapper接口,那么对应方式的xml有如下配置:
a. xml放在resources目录下的com/xxx/dao/MyMapper的目录下;
b. xml放在resources目录下的指定目录下(例如mapper目录),则在application.xml中指定mybatis.mapper-locations(例如:mybatis.mapper-locations= classpath:/mapper/*.xml)
或者在application.yml中指定mybatis:
mapper-locations: classpath:/mapper/*.xml
这个样子。
下一篇:文件上传与文件接收服务
文章标题:Mybatis报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题解决办法汇总
文章链接:http://soscw.com/index.php/essay/65097.html