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