Invalid bound statement (not found): com.hxd.mapper.UserMapper.queryUserList
时间: 2023-11-01 16:58:55 浏览: 132
mybatisplus报Invalid bound statement (not found)错误的解决方法
5星 · 资源好评率100%
Invalid bound statement (not found): com.hxd.mapper.UserMapper.queryUserList 是一个错误信息,它表示该语句在 mapper 接口和 mapper.xml 中没有找到对应的映射。
这个问题可能有以下几个原因:
1. mapper 接口或 mapper.xml 文件中没有定义名为 queryUserList 的语句。
2. mapper 接口或 mapper.xml 文件中的 queryUserList 语句的命名不正确。
3. mapper 接口或 mapper.xml 文件没有正确配置,导致无法找到该语句。
为了解决这个问题,你可以尝试以下几个步骤:
1. 确保 mapper 接口中有一个名为 queryUserList 的方法,并且使用了 @Select 注解或者在 mapper.xml 中有对应的语句。
2. 检查 mapper.xml 文件中是否有一个 <select> 标签,且 id 属性的值为 queryUserList。
3. 确保 mapper 接口的包路径和 mapper.xml 文件的 namespace 保持一致。
4. 检查 mapper.xml 文件是否在 applicationContext.xml 或者 mybatis-config.xml 中正确配置。
阅读全文