Invalid bound statement (not found): dao.StudentMapper.selectStudentCourse
时间: 2024-05-08 09:14:20 浏览: 87
mybatisplus报Invalid bound statement (not found)错误的解决方法
5星 · 资源好评率100%
"Invalid bound statement (not found): dao.StudentMapper.selectStudentCourse"是一个Mybatis的错误信息,它意味着Mybatis在解析Mapper XML文件时,找不到对应的SQL语句。通常这种错误是由于Mapper XML文件中的SQL语句ID与Java接口中的方法名不一致导致的。请检查你的Mapper XML文件中是否存在一个ID为selectStudentCourse的SQL语句,或者检查一下对应的Java接口方法名是否为selectStudentCourse。
阅读全文