mybatisplus的 yml怎么写
时间: 2023-10-04 19:05:54 浏览: 159
基于yml 配置方式 ,实现springBoot+sharding-jdbc+mybatis-plus 实现分库分表,读写分离,以及全局表,子表的配置
MybatisPlus的yml配置文件可以写成以下格式:
```yaml
mybatis-plus:
# 数据库配置
global-config:
db-config:
# 主键类型
id-type: auto
# 字段策略
field-strategy: not_empty
# 逻辑删除配置
logic-delete-value: 1
logic-not-delete-value: 0
# 分页配置
page-helper:
auto-dialect: true
close-conn: true
```
这样配置后,就可以在代码中使用MybatisPlus的各种功能了。
阅读全文