Interface GlobalFilter
-
- All Known Implementing Classes:
AdaptCachedBodyGlobalFilter,ForwardPathFilter,ForwardRoutingFilter,GatewayMetricsFilter,GatewayNoLoadBalancerClientAutoConfiguration.NoLoadBalancerClientFilter,LoadBalancerServiceInstanceCookieFilter,NettyRoutingFilter,NettyWriteResponseFilter,ReactiveLoadBalancerClientFilter,RemoveCachedBodyFilter,RouteToRequestUrlFilter,WebClientHttpRoutingFilter,WebClientWriteResponseFilter,WebsocketRoutingFilter
public interface GlobalFilterContract for interception-style, chained processing of gateway requests that may be used to implement cross-cutting, application-agnostic requirements such as security, timeouts, and others. Only applies to matched gateway routes. Copied from framework WebFilter- Since:
- 5.0
- Author:
- Rossen Stoyanchev
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<Void>filter(org.springframework.web.server.ServerWebExchange exchange, GatewayFilterChain chain)Process the Web request and (optionally) delegate to the nextGatewayFilterthrough the givenGatewayFilterChain.
-
-
-
Method Detail
-
filter
reactor.core.publisher.Mono<Void> filter(org.springframework.web.server.ServerWebExchange exchange, GatewayFilterChain chain)
Process the Web request and (optionally) delegate to the nextGatewayFilterthrough the givenGatewayFilterChain.- Parameters:
exchange- the current server exchangechain- provides a way to delegate to the next filter- Returns:
Mono<Void>to indicate when request processing is complete
-
-