123456789101112131415161718192021222324252627282930313233343536373839404142 |
- spring:
- application:
- name: svr-authentication
- cloud:
- config:
- failFast: true
- username: jw
- password: jkzl
- #发现服务
- eureka:
- client:
- healthcheck:
- enabled: false #监控检查
- serviceUrl:
- defaultZone: http://jw:jkzl@172.26.0.107:8761/eureka/
- instance:
- prefer-ip-address: false
- instance-id: ${spring.cloud.client.ipAddress}:${server.port}
- ---
- 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:jwtest}
- ---
- spring:
- profiles: jwprod
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:jwprod}
|