19 lines
407 B
YAML
19 lines
407 B
YAML
spring:
|
|
# redis 配置
|
|
redis:
|
|
host: 127.0.0.1
|
|
port: 6379
|
|
database: 8
|
|
timeout: 5000
|
|
auth: caolin123
|
|
|
|
|
|
# 数据库 配置
|
|
datasource:
|
|
url: jdbc:mysql://127.0.0.1:3306/driver_server?characterEncoding=utf-8&autoReconnect=true&maxReconnects=2&useSSL=false&allowPublicKeyRetrieval=true&failOverReadOnly=false&serverTimezone=Asia/Shanghai
|
|
username: root
|
|
password: 123456
|
|
|
|
|
|
|