SpringBoot报错Invalid bound statement (not found):[实体类名] 的处理方法

在这里插入图片描述

  • SpringBoot在使用mapper时,会遇到这个错误。
  • 这是由于项目找不到这个mapper文件夹,识别不出来导致的。
  • 解决方法如下:
  1. 在resources文件夹下创建application.yml文件
  2. 加入语句
mybatis:
  type-aliases-package: com.test.test.entity
  mapper-locations: classpath:mapper/*.xml

即可解决

你可能感兴趣的:(spring,boot,mybatis)