yaml配置 mapper-locations
时间: 2023-10-18 12:54:35 浏览: 127
尚硅谷-通用Mapper视频教程
在yaml配置中,可以使用以下方式配置mapper-locations:
```yaml
mybatis:
mapper-locations: classpath:mapper/*.xml
```
这样配置的作用是告诉Spring Boot Mybatis的SQL语句的XML文件的位置在classpath下的mapper目录中,文件名为*.xml。这样Mybatis就能够找到并加载这些XML文件中的SQL语句了。[1]
阅读全文