Invalid bound statement (not found): com.itbaizhan.mapper.StudentMapper.findAll
时间: 2023-11-04 17:59:12 浏览: 156
MybatisPlus BaseMapper 中的方法全部 Invalid bound statement (not found Error处理)
5星 · 资源好评率100%
这个问题的原因是mapper接口和mapper.xml文件没有正确映射。可能出现的错误有两种情况。第一种情况是mapper.xml中的namespace与实际的mapper文件不一致,需要仔细检查确保它们对应正确。第二种情况是Mapper.xml没有构建进去,可以查看target目录下是否存在对应的Mapper.xml文件,如果不存在,可以尝试进行maven的clean操作后重新运行。
阅读全文