1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| spring:
| profiles:
| active: dev
|
| mybatis-plus:
| mapper-locations: classpath:mapper/*/*.xml
| # global-config:
| # field-strategy: 0
| configuration:
| # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
| map-underscore-to-camel-case: true
| cache-enabled: true
| call-setters-on-nulls: true
| global-config:
| :banner: false
| db-config:
| id-type: auto
| logic-delete-value: 1
| logic-not-delete-value: 0
|
| logging:
| file:
| path: logs/@pom.artifactId@
|
|