12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- spring:
- jpa:
- database-platform: org.hibernate.dialect.MySQL5Dialect
- hibernate:
- dialect: org.hibernate.dialect.MySQL5Dialect
- quartz:
- auto-startup: false
- #应用部署所在区域
- 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
|