org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.summer.boot.mapper.UserMapper.selectPage
时间: 2023-10-17 14:34:15 浏览: 106
解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
5星 · 资源好评率100%
你报告了一个 `org.apache.ibatis.binding.BindingException` 异常,异常信息显示为 "Invalid bound statement (not found): com.summer.boot.mapper.UserMapper.selectPage"。这个异常通常是由于 MyBatis 在映射文件中找不到对应的 SQL 语句引起的。
要解决这个问题,你可以按照以下步骤进行检查和修复:
1. 确保 `com.summer.boot.mapper.UserMapper.xml` 文件存在,并且位于正确的位置。这个文件通常存放在 `resources/mapper` 目录下,可以通过 `classpath` 来访问。
2. 在 `com.summer.boot.mapper.UserMapper.xml` 文件中,查找是否存在名为 `selectPage` 的 SQL 语句。确保语句的 id 和命名空间与异常信息中提到的一致。
示例代码:
```xml
<mapper namespace="com.summer.boot.mapper.UserMapper">
<select id="selectPage" resultType="com.summer.boot.entity.User">
<!-- SQL 语句内容 -->
</select>
</mapper>
```
3. 如果找到了 `selectPage` 的 SQL 语句,确保语句的书写正确且没有语法错误。可以先将 SQL 语句复制到数据库客户端进行测试,确保语句本身是有效的。
4. 检查 MyBatis 的配置文件(通常是 `mybatis-config.xml`),确认配置文件中已经加载了 `com.summer.boot.mapper.UserMapper.xml` 文件。
示例代码:
```xml
<mappers>
<mapper resource="com/summer/boot/mapper/UserMapper.xml"/>
</mappers>
```
5. 如果以上步骤都正确,但问题仍然存在,那就需要检查代码中是否正确注入了 `UserMapper` 接口的实例,并且没有进行拼写错误或其他配置错误。
通过以上步骤的检查和修复,应该能够解决你遇到的 `Invalid bound statement` 异常问题。
阅读全文