1234567891011121314151617181920212223 |
- spring:
- application:
- name: gateway-service
- cloud:
- config:
- # uri: http://${myuri}:8769
- fail-fast: true
- discovery:
- enabled: true
- serviceId: config-server
- profiles:
- active: pro
- main:
- allow-bean-definition-overriding: true
- eureka:
- client:
- serviceUrl:
- defaultZone: http://${myuri}:8761/eureka/
- myuri: localhost
|