1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- security:
- basic:
- enabled: false
- hystrix:
- command:
- default:
- execution:
- # timeout:
- # enabled: false
- isolation:
- thread:
- timeoutInMilliseconds: 30000
- ---
- spring:
- profiles: dev
- datasource:
- url: jdbc:mysql://192.168.1.220:3306/xmehr?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: xmehr
- password: xmehr
- 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
- hos:
- saasAdmin: jkzl #SAAS管理员账号,暂时配置在此处
- jwt:
- header: Authorization
- secret: mySecret
- expiration: 604800
- tokenHead: "Bearer "
- ---
- spring:
- profiles: test
- jackson:
- serialization:
- INDENT_OUTPUT: true
- 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.42
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- gridFsDatabase: dfs
- database: runtime
- aop:
- proxy-target-class: true
- hos:
- saasAdmin: jkzl #SAAS管理员账号,暂时配置在此处
- jwt:
- header: Authorization
- secret: mySecret
- expiration: 604800
- tokenHead: "Bearer "
|