123456789101112131415161718192021222324252627282930313233343536373839 |
- spring:
- application:
- name: svr-cloud-care
- 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://127.0.0.1:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: hzprod
- cloud:
- config:
- uri: ${wlyy-spring.config.uri:http://127.0.0.1:1221}
- label: ${wlyy-spring.config.label:jwdev}
|