BindingException:Invalid bound statement(not found)
时间: 2023-11-24 13:53:16 浏览: 76
BindingException:Invalid bound statement(not found)是MyBatis中常见的错误提示,通常是由于Mapper文件中的statement id与Java代码中的方法名不一致导致的。解决这个问题的方法如下:
1.检查Mapper文件中的statement id是否与Java代码中的方法名一致。
2.检查Mapper文件的namespace是否正确。
3.检查Mapper文件的路径是否正确。
如果以上三个步骤都没有解决问题,那么可能是文件名导致的异常,需要检查Mapper文件的文件名是否正确。
以下是一个示例代码,演示了如何解决BindingException:Invalid bound statement(not found)异常:
```java
// MyBatis配置文件中的Mapper映射
<mapper namespace="com.example.mapper.UserMapper">
<select id="getUserById" resultType="com.example.entity.User">
select * from user where id = #{id}
</select>
</mapper>
// Java代码中的Mapper接口
public interface UserMapper {
User getUserById(int id);}
// Java代码中的Mapper实现类
public class UserMapperImpl implements UserMapper {
private SqlSession sqlSession;
public UserMapperImpl(SqlSession sqlSession) {
this.sqlSession = sqlSession;
}
public User getUserById(int id) {
return sqlSession.selectOne("com.example.mapper.UserMapper.getUserById", id);
}
}
```
阅读全文