1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| server: port: 8080 spring: application: name: api-gateway-server redis: host: localhost pool: 6379 database: 0 cloud: gateway: routes: - id: product-service uri: lb://service-product predicates: - Path=/product-service/** filters: - RewritePath=/product-service/(?<segment>.*), /$\{segment}
|