org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.land.test.dao.ClassificationMapper.selectList
时间: 2023-11-01 12:58:54 浏览: 36
解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
5星 · 资源好评率100%
该错误是由于mybatis-plus在绑定语句时找不到指定的sql语句所导致的。具体到您提出的问题中,错误信息是"org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.land.test.dao.ClassificationMapper.selectList",意思是无法找到com.land.test.dao包下的ClassificationMapper类的selectList方法。
要解决这个问题,您可以按照以下步骤进行操作:
1. 首先,确保您的编码中存在com.land.test.dao.ClassificationMapper接口,并且该接口的selectList方法已经正确实现。
2. 检查您的mybatis-plus配置文件,确保已经正确配置了该接口的映射关系。
3. 检查您的mapper.xml文件,确保已经为com.land.test.dao.ClassificationMapper接口的selectList方法编写了正确的SQL语句。
4. 如果以上步骤都确认无误,那么您可能需要检查一下引入的依赖是否正确,包括mybatis-plus和相关数据库的驱动。
阅读全文