20 lines
516 B
YAML
20 lines
516 B
YAML
|
|
server:
|
||
|
|
port: 8080
|
||
|
|
|
||
|
|
spring:
|
||
|
|
datasource:
|
||
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
|
|
url: jdbc:mysql://localhost:3306/reading_platform?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
|
||
|
|
username: root
|
||
|
|
password: root
|
||
|
|
jackson:
|
||
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
||
|
|
time-zone: Asia/Shanghai
|
||
|
|
serialization:
|
||
|
|
write-dates-as-timestamps: false
|
||
|
|
|
||
|
|
logging:
|
||
|
|
level:
|
||
|
|
com.reading.platform: debug
|
||
|
|
com.baomidou.mybatisplus: debug
|