12345678910111213141516171819202122232425262728293031323334353637383940 |
- spring:
- application:
- name: svr-patient
- 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: prod
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://192.168.131.174:1221}
- label: ${wlyy.spring.config.label:prod}
- ---
- spring:
- profiles: local
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://192.168.131.174:1221}
- label: ${wlyy.spring.config.label:local}
|