123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- spring:
- jpa:
- database-platform: org.hibernate.dialect.MySQL5Dialect
- hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
- #应用部署所在区域
- deploy:
- region: 3502
- ---
- spring:
- profiles: dev
- micro:
- service:
- adaption:
- address-str: http://localhost
- port: 10150
- app:
- address-str: http://localhost
- port: 10160
- dict:
- address-str: http://localhost
- port: 10050
- esb:
- address-str: http://localhost
- port: 10130
- geography:
- address-str: http://localhost
- port: 10090
- organization:
- address-str: http://localhost
- port: 10070
- package:
- address-str: http://localhost
- port: 6010
- patient:
- address-str: http://localhost
- port: 10100
- security:
- address-str: http://localhost
- port: 10110
- standard:
- address-str: http://localhost
- port: 10040
- user:
- address-str: http://localhost
- port: 10120
- ---
- spring:
- profiles: test
- micro:
- service:
- adaption:
- address-str: http://172.19.103.73
- port: 10150
- app:
- address-str: http://172.19.103.73
- port: 10160
- dict:
- address-str: http://172.19.103.74
- port: 10050
- esb:
- address-str: http://172.19.103.74
- port: 10130
- geography:
- address-str: http://172.19.103.74
- port: 10090
- organization:
- address-str: http://172.19.103.74
- port: 10070
- package:
- address-str: http://172.19.103.74
- port: 6010
- patient:
- address-str: http://172.19.103.75
- port: 10100
- security:
- address-str: http://172.19.103.75
- port: 10110
- standard:
- address-str: http://172.19.103.75
- port: 10040
- user:
- address-str: http://172.19.103.75
- port: 10120
- ---
- spring:
- profiles: prod
|