org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.jt.dao.UserMapper.insterList
时间: 2023-11-15 18:00:35 浏览: 18
MybatisPlus BaseMapper 中的方法全部 Invalid bound statement (not found Error处理)
5星 · 资源好评率100%
这个错误信息表明在MyBatis中,无法找到名为"com.jt.dao.UserMapper.insterList"的绑定语句。可能的原因是该语句没有正确配置或者没有在映射文件中定义。建议检查一下启动类的配置和对应的映射文件,确保语句的正确性和完整性。同时,也可以参考引用中的示例代码,检查一下UserMapper.java类中是否正确定义了insterList方法。
阅读全文