123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # 数据源配置
- spring:
- datasource:
- dynamic:
- strict: true
- primary: base
- datasource:
- base:
- url: jdbc:mysql://36.134.91.96:12333/sd_base?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=Asia/Shanghai
- username: root
- password: Fjhx@pwd123
- business:
- url: jdbc:mysql://36.134.91.96:12333/sd_business?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=Asia/Shanghai
- username: root
- password: Fjhx@pwd123
- # redis 配置
- redis:
- # 地址
- host: 36.134.91.96
- # 端口,默认为6379
- port: 13444
- # 数据库索引
- database: 3
- # 密码
- password: Fjhx@pwd123
- # 连接超时时间
- timeout: 10s
- lettuce:
- pool:
- # 连接池中的最小空闲连接
- min-idle: 0
- # 连接池中的最大空闲连接
- max-idle: 8
- # 连接池的最大数据库连接数
- max-active: 8
- # #连接池最大阻塞等待时间(使用负值表示没有限制)
- max-wait: -1ms
- server:
- servlet:
- context-path: /test-api
- # token配置
- token:
- # 令牌自定义标识
- header: Authorization
- # 令牌密钥
- secret: abcdefghijklmnopqrstuvwxyz
- # 令牌有效期(默认30分钟)
- expireTime: 2880
|