Invalid bound statement (not found): com.baizhi.rxj.dao.UserDao.selectList
时间: 2023-10-14 17:31:11 浏览: 142
mybatisplus报Invalid bound statement (not found)错误的解决方法
5星 · 资源好评率100%
这个错误通常表示 MyBatis 找不到名为 `selectList` 的 bound statement。请检查你的 `UserDao.xml` 文件中是否有类似下面的语句:
```xml
<select id="selectList" resultType="your.package.User">
SELECT * FROM user
</select>
```
如果你的 `selectList` 节点的 `id` 属性值不是 `selectList`,则需要将其改为 `selectList`。同时,也需要确保你的 `UserDao` 接口中有一个与之对应的方法,方法名为 `selectList`,并且它的参数类型与 `UserDao.xml` 中的 `parameterType` 属性值相匹配。
阅读全文