123456789101112131415161718192021222324 |
- server:
- port: 9998
- # 数据源配置
- spring:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://139.9.184.42:3306/bladex_email?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&tinyInt1isBit=false&allowMultiQueries=true&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true
- username: root
- password: Fjhx@pwd123
- redis:
- # 地址
- host: 139.9.184.42
- # 端口,默认为6379
- port: 26164
- # 密码
- password: fjhx@pwd123456
- # 数据库索引
- database: 1
- config:
- urlPrefix: http://127.0.0.1:3000/
- attachmentPath: /mnt/file/
|