SpringBoot 多模块下mapper分散的解决方法

如题,多模块下Mapper扫描失败:

原因:mapper-locations: classpath*:mybatis/**/*Mapper.xml

mapper文件存放在resources/system/mapper,resources/project/mapper下导致扫描不到

网络图片

解决方法:

mapper-locations: classpath*:mybatis/*Mapper.xml

将mapper文件统一存到resources/mapper目录下

问题解决了一下午时间,试过各种方法,崩溃。。。

你可能感兴趣的:(SpringBoot 多模块下mapper分散的解决方法)