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.
32 lines
1002 B
32 lines
1002 B
#数据源配置 - dev |
|
spring: |
|
redis: |
|
##redis 单机环境配置 |
|
host: 127.0.0.1 |
|
port: 6379 |
|
password: |
|
database: 0 |
|
ssl: false |
|
datasource: |
|
# MySql |
|
url: jdbc:mysql://localhost:3306/mediation_platform?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true |
|
username: root |
|
password: 123456 |
|
|
|
#server: |
|
# port: 10000 |
|
# |
|
##数据源配置 |
|
#spring: |
|
# redis: |
|
# ##redis 单机环境配置 |
|
# host: 223.80.105.200 |
|
# port: 41307 |
|
# password: asdf.1234 |
|
# database: 0 |
|
# ssl: false |
|
# datasource: |
|
# # MySql |
|
# url: jdbc:mysql://223.80.105.200:41306/mediation_platform?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true |
|
# username: root |
|
# password: asdf.1234
|
|
|