mybatisplus默认xml文件路径
时间: 2023-07-06 08:24:24 浏览: 344
MyBatisPlus(SpringBoot版) demo
MyBatis-Plus 默认的 XML 文件路径为 `classpath*:/mapper/**/*.xml`,即在 classpath 下的 mapper 目录及其子目录中查找所有以 .xml 结尾的文件作为 MyBatis 的映射文件。可以通过在 application.yml 或 application.properties 中配置 mybatis-plus.mapper-locations 属性来自定义 XML 文件路径。例如:
```yaml
mybatis-plus:
mapper-locations: classpath:/mybatis/mapper/**/*.xml
```
这样就会在 classpath 下的 mybatis/mapper 目录及其子目录中查找所有以 .xml 结尾的文件作为 MyBatis 的映射文件。
阅读全文