18 lines
352 B
YAML
18 lines
352 B
YAML
|
|
spring:
|
||
|
|
profiles:
|
||
|
|
active: dev
|
||
|
|
jackson:
|
||
|
|
time-zone: GMT+8
|
||
|
|
|
||
|
|
mybatis-plus:
|
||
|
|
configuration:
|
||
|
|
map-underscore-to-camel-case: false
|
||
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||
|
|
mapper-locations: classpath*:/mapper/**/*.xml
|
||
|
|
global-config:
|
||
|
|
banner: false
|
||
|
|
|
||
|
|
logging:
|
||
|
|
file:
|
||
|
|
path: logs
|
||
|
|
config: classpath:logback-spring.xml
|