123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- spring:
- application:
- name: HosBrokerServer
- server:
- port: 8099
- contextPath:
- sessionTimeout: 300
- security:
- basic:
- enabled: false
- # the name of Camel
- camel:
- springboot:
- name: HosBrokerServer
- ---
- spring:
- profiles: dev
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://192.168.1.220:8066/hos2?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-active: 30
- default-auto-commit: true
- max-idle: 30
- min-idle: 10
- initial-size: 10
- activemq:
- broker-url: tcp://172.19.103.57:61616
- user: admin
- password: admin
- data:
- mongodb:
- host: 172.19.103.58
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- database: log
- gridFsDatabase: dfs
- gateway:
- ip: localhost
- port: 8066
- hos:
- esb:
- rest-url: http://192.168.131.119:8080/esb
- arbiter:
- enable: true
- url: http://localhost:10135
- rest:
- url: http://localhost:8088
- timer:
- period: 10000
- tenant:
- name: jkzl
- ---
- spring:
- profiles: test
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://192.168.1.220:8066/hos1?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-active: 30
- default-auto-commit: true
- max-idle: 30
- min-idle: 10
- initial-size: 10
- activemq:
- broker-url: tcp://172.19.103.58:61616
- user: admin
- password: admin
- data:
- mongodb:
- host: 172.19.103.57
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- database: log
- gridFsDatabase: dfs
- gateway:
- ip: localhost
- port: 8066
- hos:
- esb:
- rest-url: http://192.168.131.119:8080/esb
- arbiter:
- enable: false
- url: http://172.19.103.57:10135
- rest:
- url: http://localhost:8088
- timer:
- period: 10000
- ---
- spring:
- profiles: lfq
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://172.19.103.51:3306/db1?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true
- username: canal
- password: canal
- test-on-borrow: true
- validation-query: SELECT 1
- test-while-idle: true
- max-active: 30
- default-auto-commit: true
- max-idle: 30
- min-idle: 10
- initial-size: 10
- activemq:
- broker-url: tcp://172.19.103.58:61616
- user: admin
- password: admin
- data:
- mongodb:
- host: 172.19.103.58
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- database: log
- gridFsDatabase: dfs
- gateway:
- ip: localhost
- port: 8066
- server:
- port: 9999
- hos:
- esb:
- rest-url: http://192.168.131.119:8080/esb
- arbiter:
- enable: true
- url: http://192.168.131.38:10135
- rest:
- url: http://localhost:8088
- timer:
- period: 10000
- tenant:
- name: yichang
|