123456789101112131415161718192021222324252627 |
- spring:
- datasource:
- url: jdbc:mysql://192.168.1.122:3306/rdsliftmanager?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
- username: root
- password: Ty-20526
- driver-class-name: com.mysql.cj.jdbc.Driver
- #redis缓存配置
- redis:
- database: 0 #数据库索引,默认为0
- host: 192.168.1.122 #服务器地址
- port: 6379 #端口
- password: tytykj #验证密码
- jedis:
- pool:
- max-active: 8 #最大连接数
- max-idle: 8 #最大空闲链接
- max-wait: 20000ms
- min-idle: 0
- #aliyun OSS服务配置信息,加载到SystemConfiguration
- aliyun:
- oss:
- endpoint: http://oss-cn-hangzhou-internal.aliyuncs.com
- bucketName: ty-oss-file
- accessKeyId: LTAI4G1iLTczu8JxM2En57gY
- accessKeySecret: VHeRj3C2br87Uh447ruHsSTvYSDWeC
|