org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.itheima.dao.UserDao.selectList
时间: 2024-05-27 14:06:37 浏览: 70
MyBatis绑定错误提示BindingException:Invalid bound statement (not found)的解决方法
这个错误信息表示在 MyBatis 操作数据库时,绑定的 SQL 语句无效,因为没有找到对应的语句。在这个具体的错误中,是因为在调用 com.itheima.dao.UserDao.selectList 方法时,MyBatis 找不到对应的 SQL 语句。
这个错误通常是由于以下原因引起的:
1. 在 mapper.xml 文件中没有定义与 com.itheima.dao.UserDao.selectList 方法相对应的 <select> 语句。
2. 在 mapper.xml 文件中定义了与 com.itheima.dao.UserDao.selectList 方法相对应的 <select> 语句,但是命名空间或者语句 id 不正确。
如果你是开发者,可以检查一下以上两种情况,看看是否有问题。如果还有其他疑问,请继续提出。
阅读全文