springboot整合mybatis plus中的 mybatis 配置文件
时间: 2023-11-17 13:00:20 浏览: 117
spring和mybatis整合配置文件
在SpringBoot整合Mybatis Plus中,Mybatis的配置文件可以通过在application.properties或application.yml中进行配置。以下是一个示例:
```yaml
mybatis:
mapper-locations: classpath:mapper/*.xml # mapper文件的位置
configuration:
map-underscore-to-camel-case: true # 开启驼峰命名转换
```
在这个示例中,mapper文件的位置被设置为classpath:mapper/*.xml,这意味着mapper文件应该放在项目的classpath下的mapper目录中。同时,开启了驼峰命名转换,这意味着在数据库中使用下划线分隔的列名将被转换为Java中的驼峰命名方式。
阅读全文