1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- spring:
- application:
- name: svr-internet-hospital
- cloud:
- config:
- failFast: true
- username: jw
- password: jkzl
- ---
- spring:
- profiles: jwdev
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:jwdev}
- ---
- spring:
- profiles: jwtest
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:jwdev}
- ---
- spring:
- profiles: jwprod
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://192.0.33.26:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: local
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://192.168.131.174:1221}
- label: ${wlyy.spring.config.label:local}
- ---
- spring:
- profiles: jwprod70
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.16.1.70:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: jwOracleTest
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:jwdev}
- ---
- spring:
- profiles: jwOracleProd
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:jwdev}
|