Invalid bound statement (not found): com.hjh.mapper.EmployeeMapper.queryList
时间: 2023-11-07 21:05:10 浏览: 100
mybatisplus报Invalid bound statement (not found)错误的解决方法
5星 · 资源好评率100%
Invalid bound statement (not found): com.hjh.mapper.EmployeeMapper.queryList 错误是由于项目运行时找不到对应的查询语句导致的。解决这个问题的方法包括以下几点:
1. 确保在启动Spring Boot应用程序时已经添加了正确的@MapperScan注解,注解参数指定了mapper接口所在的包路径。
2. 确保mapper接口上添加了@Mapper注解,以便MyBatis能够正确识别和处理该接口。
3. 确保在mapper接口中定义了对应的查询方法,并且在对应的mapper.xml文件中编写了正确的查询语句。
4. 确保mapper.xml文件位于正确的位置,并且在项目编译之后仍然存在。
阅读全文