springboot配置mybatisplus的xml映射地址
时间: 2023-04-04 11:00:45 浏览: 131
springboot-mybatisplus-demo.zip
可以在application.yml中配置mybatis-plus.mapper-locations属性来指定xml映射地址,例如:
mybatis-plus:
mapper-locations: classpath:/mapper/*.xml
这样就会扫描classpath下的mapper目录下的所有xml文件作为mybatis的映射文件。
阅读全文