TrueOctopus
2023-03-16

MybatisPlus配置项

常用的MybatisPlus配置项

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 指定全局的配置文件
mybatis-plus.config-location=classpath:mybatis-config.xml

# 指定Mapper.xml文件的路径
mybatis-plus.mapper-locations = classpath*:mybatis/*.xml

# 实体对象的扫描包
mybatis-plus.type-aliases-package = cn.itcast.mp.pojo

# 禁用自定的驼峰映射
#mybatis-plus.configuration.map-underscore-to-camel-case=true

# 禁用缓存
#mybatis-plus.configuration.cache-enabled=false

# 全局的id生成策略
#mybatis-plus.global-config.db-config.id-type=input
mybatis-plus.global-config.db-config.id-type=auto

# 全局的表名的前缀
mybatis-plus.global-config.db-config.table-prefix=tb_

# 删除状态的值为:1
mybatis-plus.global-config.db-config.logic-delete-value=1

# 未删除状态的值为:0
mybatis-plus.global-config.db-config.logic-not-delete-value=0

# 枚举包扫描
mybatis-plus.type-enums-package=cn.itcast.mp.enums