springboot|mybatis扫描任意路径下的mapper文件

springboot与mybatis整合时会发现mapper文件必须放在resource下,这样对于一些人很不习惯。这样我们说一下解决办法。
**

application.yml的配置

**

mybatis:
  config-location:classpath:mybatis/mybatis.cfg.xml        # mybatis配置文件所在路径
  mapper-locations:classpath*:com/example/demo/**/dao/xml/*.xml                       # mapper映射文件

**
一定要注意classpath*

application.properties的配置

**

#mybatis的mapper配置文件
# mybatis配置文件所在路径
mybatis.config-location:classpath:mybatis-config.xml
# 所有的mapper映射文件
mybatis.mapper-locations:classpath*:com/springboot/mapper/*.xml

你可能感兴趣的:(springboot)