|
This version is still in development and is not considered stable yet. For the latest stable version, please use Spring Cloud Gateway 5.0.1! |
PrefixPath GatewayFilter Factory
The PrefixPath GatewayFilter factory takes a single prefix parameter.
The following example configures a PrefixPath GatewayFilter:
application.yml
spring:
cloud:
gateway:
server:
webflux:
routes:
- id: prefixpath_route
uri: https://example.org
filters:
- PrefixPath=/mypath
This prefixes /mypath to the path of all matching requests.
So a request to /hello is sent to /mypath/hello.