12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- security:
- basic:
- enabled: false
- hystrix:
- command:
- default:
- execution:
- # timeout:
- # enabled: false
- isolation:
- thread:
- timeoutInMilliseconds: 30000
- ---
- spring:
- profiles: dev
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://172.19.103.57:8066/global_db?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true
- username: hos
- password: 123456
- test-on-borrow: true
- validation-query: SELECT 1
- test-while-idle: true
- max-total: 100
- default-auto-commit: true
- max-idle: 50
- min-idle: 20
- initial-size: 10
- jpa:
- database-platform: org.hibernate.dialect.MySQL5Dialect
- hibernate:
- dialect: org.hibernate.dialect.MySQL5Dialect
- format-sql: true
- show-sql: false
- data:
- mongodb:
- host: 172.19.103.57
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- gridFsDatabase: dfs
- database: runtime
- aop:
- proxy-target-class: true
- ---
- spring:
- profiles: test
- jackson:
- serialization:
- INDENT_OUTPUT: true
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://172.19.103.42:8066/global_db?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true
- username: hos
- password: 123456
- test-on-borrow: true
- validation-query: SELECT 1
- test-while-idle: true
- max-total: 100
- default-auto-commit: true
- max-idle: 50
- min-idle: 20
- initial-size: 10
- jpa:
- database-platform: org.hibernate.dialect.MySQL5Dialect
- hibernate:
- dialect: org.hibernate.dialect.MySQL5Dialect
- format-sql: true
- show-sql: false
- data:
- mongodb:
- host: 172.19.103.42
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- gridFsDatabase: dfs
- database: runtime
- aop:
- proxy-target-class: true
|