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