123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- application:
- message: ESB
- server:
- context-path: /esb
- port: 8080
- session-timeout: 3000
- security:
- basic:
- enabled: false
- local:
- server:
- port: 8080
- spring:
- mvc:
- view:
- prefix: /WEB-INF/ehr/jsp/
- suffix: .jsp
- ---
- spring:
- profiles: dev
- administrators: jkzl
- #SAAS管理员账号,暂时配置在此处
- 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
- # activemq:
- # broker-url: tcp://172.19.103.57:61616?wireFormat.maxInactivityDuration=0
- # user: admin
- # password: admin
- # pooled: false
- aop:
- proxy-target-class: true
- hos:
- zbus:
- port: 15555
- store: ./store
- mysql:
- filePath: e://learn.sql #租户基础表 sql文件位置
- service-gateway:
- portalUrl: http://localhost:444/api/v1.0/portal
- ---
- spring:
- profiles: test
- administrators: jkzl
- #SAAS管理员账号,暂时配置在此处
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://172.17.110.202: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: mongodb
- port: 27017
- username: esb
- password: esb
- authenticationDatabase: admin
- gridFsDatabase: dfs
- database: runtime
- activemq:
- broker-url: tcp://activemq:61616?wireFormat.maxInactivityDuration=0
- user: admin
- password: admin
- pooled: false
- aop:
- proxy-target-class: true
- hos:
- zbus:
- url: 172.17.110.202:15555
- port: 15555
- store: ./store
- mysql:
- filePath: /usr/local/esb/esb.sql #租户基础表 sql文件位置
- service-gateway:
- portalUrl: http://sdw2:444/api/v1.0/portal
- ---
- spring:
- #SAAS管理员账号,暂时配置在此处
- administrators: jkzl
- profiles: lfq
- #SAAS管理员账号,暂时配置在此处
- datasource:
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://192.168.1.220: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
- # activemq:
- # broker-url: tcp://172.19.103.57:61616?wireFormat.maxInactivityDuration=0
- # user: admin
- # password: admin
- # pooled: false
- aop:
- proxy-target-class: true
- hos:
- zbus:
- port: 15555
- store: ./store
- mysql:
- filePath: e://learn.sql #租户基础表 sql文件位置
|