SpringBoot整合Mybatis无法扫描xml文件问题

网上说是使用idea在SpringBoot整合Mybatis时候会扫描不到xml文件

1.将xml文件放在resources下

2.在application.properties中配置xml文件的扫面

#扫描mybatis xml
mybatis.mapper-locations=classpath:mybatis/mapper/*.xml
# 开启sql日志
logging.level.cn.smartpilot.yangjiang.mapper=debug

你可能感兴趣的:(SpringBoot整合Mybatis无法扫描xml文件问题)