Invalid bound statement (not found): com.sa.wuhu.rice.mapper
时间: 2023-08-19 10:11:37 浏览: 86
根据提供的引用内容,出现"Invalid bound statement (not found): com.sa.wuhu.rice.mapper"的错误是因为在Springboot整合Mybatis-plus时,没有找到对应的参数。解决这个问题的方法是检查导入的Pom依赖是否正确。根据引用[3]中的解决方法,需要将原先导入的mybatis-plus依赖更换为mybatis-plus-boot-starter依赖。正确的Pom依赖应该是:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.1</version>
</dependency>
```
请确保在整合Mybatis-plus时使用了正确的依赖。
相关问题
Invalid bound statement (not found):com.example.mapper.
Invalid bound statement (not found): com.example.mapper 是一个错误的绑定语句,它表示在 com.example.mapper 包中找不到对应的语句。这通常是由于以下几种情况导致的:
1. 语句不存在:可能是因为你在 com.example.mapper 包中没有定义或者命名错误的语句。请检查你的代码,确保语句的存在和正确的命名。
2. 包名错误:可能是因为你指定的包名 com.example.mapper 不正确。请确保包名的准确性,包括大小写和路径。
3. 映射器配置错误:可能是因为你在映射器配置文件中没有正确地配置对应的语句。请检查映射器配置文件,确保语句的正确配置。
如果你能提供更多的上下文信息或者代码片段,我可以给出更具体的帮助。
Invalid bound statement (not found): com.znwl.agri.mserv.business.dao.reap.AgrTruckWaybillLoadRecordMapper.selectContractRecordListByConditions org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.znwl.agri.mserv.business.dao.reap.AgrTruckWaybillLoadRecordMapper.selectContractRecordListByConditions
这个错误是由于MyBatis无法找到指定的SQL语句引起的。根据错误信息,无法找到名为`com.znwl.agri.mserv.business.dao.reap.AgrTruckWaybillLoadRecordMapper.selectContractRecordListByConditions`的绑定语句。请确保在你的MyBatis映射文件中定义了该语句,并且文件路径和语句名称都是正确的。另外,还需要检查是否正确配置了MyBatis的映射文件位置和命名空间。如果仍然存在问题,请提供更多的代码和配置信息以便我能够帮助你进一步排查。
阅读全文