MybatisPlus报错:BindingException: Invalid bound statement (not found): 的解决办法

当我们遇到这个报错的时候,通常意味着mapper的绑定出现了问题

我们需要检查相关的配置文件是否正确

本人使用MyBatisPlus时遇到了这个问题,

BindingException: Invalid bound statement (not found): 

通过检查映射发现没有问题

MybatisPlus报错:BindingException: Invalid bound statement (not found): 的解决办法_第1张图片

再检查namescape发现也是正确的

后面怀疑是mapper没有被扫描到检查启动类 发现果真如此

MybatisPlus报错:BindingException: Invalid bound statement (not found): 的解决办法_第2张图片

在mybatisplus中使用MapperScan来扫描mapper

我这里路径写错了导致我的mapper并没有被扫描到,正确的写法应该写为

@MapperScan("xxx.xxx.**.mapper")

 修改完成以后正常运行

你可能感兴趣的:(java,spring,开发语言)