You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
#数据源配置 |
|
spring: |
|
redis: |
|
##redis 单机环境配置 |
|
host: 127.0.0.1 |
|
port: 6379 |
|
password: |
|
database: 0 |
|
ssl: false |
|
datasource: |
|
# MySql |
|
url: jdbc:mysql://127.0.0.1:3306/checkup_apm?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true |
|
username: root |
|
password: 123456 |
|
# url: jdbc:mysql://127.0.0.1:3306/checkup_apm?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true |
|
# username: root |
|
# password: CGS@abc123_ |
|
|
|
#blade配置 |
|
blade: |
|
#分布式锁配置 |
|
lock: |
|
##是否启用分布式锁 |
|
enabled: false |
|
##redis服务地址 |
|
address: redis://127.0.0.1:6379 |
|
#本地文件上传 |
|
file: |
|
remote-mode: true |
|
upload-domain: http://127.0.0.1:8999 |
|
remote-path: D:\WorkSoft\minio\data
|
|
|