19 lines
543 B
YAML
19 lines
543 B
YAML
server:
|
|
port: 8800
|
|
mybatis-plus:
|
|
configuration:
|
|
# 查看日志
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
mapper-locations: classpath:com/atguigu/auth/mapper/xml/*.xml
|
|
|
|
spring:
|
|
datasource:
|
|
type: com.zaxxer.hikari.HikariDataSource
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/guigu-oa?useSSL=false&useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true
|
|
username: root
|
|
password: root
|
|
jackson:
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
time-zone: GMT+8
|