12345678910111213141516171819202122 |
- server:
- port: 8080
-
- spring:
- application:
- name: api-gateway
-
- cloud:
- gateway:
- routes:
- - id: customer
- uri: lb://customer
- predicates:
- - Path=/customer/**
- filters:
- - StripPrefix=1
-
- management:
- endpoints:
- web:
- exposure:
- include: "*"
|