123456789101112131415161718192021222324 |
- server:
- port: 8080
-
- spring:
- application:
- name: api-gateway
-
- cloud:
- gateway:
- routes:
- - id: account
- uri: http://localhost:8082/
- predicates:
- - Path=/account/**
- - id: customer
- uri: http://localhost:8081/
- predicates:
- - Path=/customer/**
-
- management:
- endpoints:
- web:
- exposure:
- include: "*"
|