29 lines
626 B
YAML
29 lines
626 B
YAML
server:
|
|
port: 8800
|
|
spring:
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
profiles:
|
|
active: @profiles.active@
|
|
application:
|
|
name: bunny-service
|
|
datasource:
|
|
driver-class-name: org.apache.shardingsphere.driver.ShardingSphereDriver
|
|
url: jdbc:shardingsphere:classpath:sharding.yaml
|
|
|
|
jackson:
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
time-zone: GMT+8
|
|
|
|
mybatis-plus:
|
|
mapper-locations: classpath:mapper/*.xml
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 查看日志
|
|
|
|
logging:
|
|
pattern:
|
|
dateformat: HH:mm:ss:SSS
|
|
file:
|
|
path: "logs/${spring.application.name}"
|
|
|