| 123456789101112131415161718192021222324252627282930313233 |
- spring:
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- profiles:
- #active: production
- active: dev
- servlet:
- multipart:
- max-file-size: 20MB #单个文件最大为20M
- max-request-size: 20MB #单次请求文件总数大小为20M
- # web:
- # resources:
- # static-locations: files
- mybatis-plus:
- global-config:
- db-config:
- #全局id策略 自增id,只有当插入对象ID 为空,才自动填充。
- id-type: auto
- #逻辑未删除 默认0 字段需要在@TableLogic注解
- logic-not-delete-value: 0
- #逻辑删除 默认1 字段需要在@TableLogic注解
- logic-delete-value: 1
- banner: off
- enable-sql-runner: true
- configuration:
- map-underscore-to-camel-case: true
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- mapper-locations: classpath*:mapper/**/*Mapper.xml
- type-aliases-package: api.**.domain
|