Package org.springframework.web.server
Interface WebFilter
- All Known Implementing Classes:
CorsWebFilter
,HiddenHttpMethodFilter
,PreFlightRequestWebFilter
,ServerHttpObservationFilter
,ServerWebExchangeContextFilter
public interface WebFilter
Contract for interception-style, chained processing of Web requests that may
be used to implement cross-cutting, application-agnostic requirements such
as security, timeouts, and others.
Consider using org.springframework.web.server.CoWebFilter
with
Kotlin Coroutines.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
filter
(ServerWebExchange exchange, WebFilterChain chain) Process the Web request and (optionally) delegate to the nextWebFilter
through the givenWebFilterChain
.
-
Method Details
-
filter
Process the Web request and (optionally) delegate to the nextWebFilter
through the givenWebFilterChain
.- 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
-