当我们遇到这个报错的时候,通常意味着mapper的绑定出现了问题
我们需要检查相关的配置文件是否正确
本人使用MyBatisPlus时遇到了这个问题,
BindingException: Invalid bound statement (not found):?
通过检查映射发现没有问题
再检查namescape发现也是正确的
<mapper namespace="xxx.xxx.xxx.infra.basic.mapper.SubjectCategoryDao">
后面怀疑是mapper没有被扫描到检查启动类 发现果真如此
在mybatisplus中使用MapperScan来扫描mapper
我这里路径写错了导致我的mapper并没有被扫描到,正确的写法应该写为
@MapperScan("xxx.xxx.**.mapper")
?修改完成以后正常运行