org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.service.UserService.selectName
时间: 2023-12-14 09:34:34 浏览: 135
解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
5星 · 资源好评率100%
根据提供的引用内容,该错误信息是由于无法绑定当前包下的UserService类的selectName方法所导致的。可能的原因是该方法不存在或者在MyBatis的Mapper配置文件中没有正确配置该方法。
解决该问题的方法是检查MyBatis的Mapper配置文件,确保其中正确配置了该方法。同时,也需要检查代码中是否正确调用了该方法。
以下是一个可能的解决方案:
1. 检查Mapper配置文件中是否正确配置了selectName方法,例如:
```xml
<!-- UserService.xml -->
<mapper namespace="com.example.service.UserService">
<select id="selectName" resultType="java.lang.String">
SELECT name FROM users WHERE id = #{id}
</select>
</mapper>
```
2. 检查代码中是否正确调用了selectName方法,例如:
```java
// UserService.java
package com.example.service;
import org.apache.ibatis.session.SqlSession;
import com.example.mapper.UserMapper;
import com.example.model.User;
import com.example.util.MyBatisUtil;
public class UserService {
public String selectName(int id) {
try (SqlSession session = MyBatisUtil.getSqlSessionFactory().openSession()) {
UserMapper mapper = session.getMapper(UserMapper.class);
return mapper.selectName(id);
}
}
}
```
阅读全文