org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.easydatalink.tech.platform.datawarehouse.mapper.subject.TAccountingSubjectMapper.selectPage
时间: 2023-10-17 09:57:00 浏览: 81
解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
5星 · 资源好评率100%
这个异常通常是Mybatis在执行SQL语句时找不到对应的映射配置,可能是因为SQL语句的ID没有在映射文件中定义或者映射文件没有被正确加载。你可以检查一下以下几个方面:
1. 检查映射文件中是否定义了ID为com.easydatalink.tech.platform.datawarehouse.mapper.subject.TAccountingSubjectMapper.selectPage的SQL语句。
2. 检查映射文件是否被正确加载。可以检查一下mybatis-config.xml中是否配置了该映射文件,并且该映射文件是否在classpath下。
3. 检查一下你的Mapper接口是否被正确扫描到,可以检查一下Mapper接口的包路径是否正确,并且在mybatis-config.xml中是否配置了该Mapper接口的扫描路径。
希望以上几个方面的检查可以帮助你解决这个问题。
阅读全文