| Package | Description |
|---|---|
| org.springframework.web.cors.reactive |
Reactive support for CORS (Cross-Origin Resource Sharing),
based on a common
CorsProcessor strategy. |
| org.springframework.web.filter.reactive |
WebFilter implementations for use in
reactive web applications. |
| org.springframework.web.server |
Core interfaces and classes for Spring's generic, reactive web support.
|
| org.springframework.web.server.handler |
Provides common WebHandler implementations and a
WebHandlerDecorator. |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
CorsWebFilter.filter(ServerWebExchange exchange,
WebFilterChain chain) |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
HiddenHttpMethodFilter.filter(ServerWebExchange exchange,
WebFilterChain chain)
Transform an HTTP POST into another method based on
methodParamName |
reactor.core.publisher.Mono<Void> |
ForwardedHeaderFilter.filter(ServerWebExchange exchange,
WebFilterChain chain) |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
WebFilter.filter(ServerWebExchange exchange,
WebFilterChain chain)
Process the Web request and (optionally) delegate to the next
WebFilter through the given WebFilterChain. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultWebFilterChain
Default implementation of
WebFilterChain. |