项目结构
App.jar
├─j1.jar
├─j2.jar
└─j3.jar
问题:在SpringBoot 只能扫描到App.jar下的mapper 扫描不到依赖 j1.jar 等的mapper
解决方法: 在appliacation.yml中
mybatis:
mapper-locations: classpath:mapper/*.xml 改为 classpath*:mapper/*.xml
classpath*扫描所有jar包下的路径
2021-07-20 06:33:23
项目结构
App.jar
├─j1.jar
├─j2.jar
└─j3.jar
问题:在SpringBoot 只能扫描到App.jar下的mapper 扫描不到依赖 j1.jar 等的mapper
解决方法: 在appliacation.yml中
mybatis:
mapper-locations: classpath:mapper/*.xml 改为 classpath*:mapper/*.xml
classpath*扫描所有jar包下的路径