1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- logging:
- level:
- com:
- netflix: ERROR
-
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- max-active: 20
- max-idle: 8
- min-idle: 8
- validation-query: SELECT 1
- test-on-borrow: true
- fast-dfs:
- pool:
- init-size: 5
- max-size: 20
- wait-time: 500
- connect-timeout: 2
- network-timeout: 30
- charset: ISO8859-1
- http:
- tracker-http-port: 80
- anti-steal-token: no
- secret-key: FastDFS1234567890
- ---
- spring:
- profiles: dev
- datasource:
- url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
- username: ha
- password: ha
- fast-dfs:
- tracker-server: 172.19.103.54:22122
- public-server: http://172.19.103.54:22122
- ---
- spring:
- profiles: alpha
- datasource:
- url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
- username: ha
- password: ha
- fast-dfs:
- tracker-server: 172.19.103.54:22122
- public-server: http://172.19.103.54:22122
-
- ---
- spring:
- profiles: test
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
- username: weifuwu
- password: weifuwu
- fast-dfs:
- tracker-server: 172.19.103.13:22122
- public-server: http://172.19.103.52:80
- ---
- spring:
- profiles: prod
- datasource:
- url: jdbc:mysql://11.1.2.5:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
- username: ha
- password: jkzlxm
- fast-dfs:
- tracker-server: 11.1.2.9:22122
- public-server: http://ds.ehr.yihu.com:22122
|