Open
Description
Example:
spring:
cloud:
gateway:
default-filters:
- StripPrefix=1
routes:
- id: example-service
uri: lb://example-service
predicates:
- Path=/example-service/**
some routes do not require a default filter...
can add the excludeDefaultFilters attribute to support it, such as:
spring:
cloud:
gateway:
default-filters:
- StripPrefix=1
routes:
- id: example-service
uri: lb://example-service
predicates:
- Path=/example-service/**
exclude-default-filters: StripPrefix