Invalid bound statement (not found): com.Lluo.mapper.StudentMapper.list
时间: 2024-05-07 12:14:37 浏览: 127
mybatisplus报Invalid bound statement (not found)错误的解决方法
5星 · 资源好评率100%
"Invalid bound statement (not found): com.Lluo.mapper.StudentMapper.list" 这个错误信息通常出现在Mybatis中使用mapper接口时,因为该接口对应的SQL语句不存在或者无法正确映射到对应的方法上。出现这种情况可以尝试以下几种方法进行解决:
1.检查mapper接口中的方法名是否与mapper.xml文件中的statement id一致。
2.检查mapper.xml文件中是否存在与mapper接口中方法名相同的statement id,且该statement id所对应的SQL语句是否正确。
3.检查mapper.xml文件是否在Mybatis配置文件中正确配置。
4.检查mapper接口和mapper.xml文件中的命名空间是否一致。
如果以上方法均不行,可以尝试在Mybatis的配置文件中添加debug级别日志,从而查看具体的SQL执行过程,找到问题所在。
阅读全文