一个SpringBoot项目,有多个模块,每个模块都有自己的pom.xml,但是maven无法扫描其它模块的xml文件。
查询解决办法:application.yml中配置spring.config.location,用的是classpath: /mapper/**/*mapper.xml,只会扫描当前module的配置需要在classpath:后面添加*
classpath: /mapper/**/*mapper.xml
*
1 2
mybatis-plus: mapper-locations: classpath*:mapper/**/*.xml