Interface PreFlightRequestHandler
- All Known Implementing Classes:
DispatcherHandler
public interface PreFlightRequestHandler
Handler for CORS pre-flight requests.
- Since:
- 5.3.4
- Author:
- Rossen Stoyanchev
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
handlePreFlight
(ServerWebExchange exchange) Handle a pre-flight request by finding and applying the CORS configuration that matches the expected actual request.
-
Method Details
-
handlePreFlight
Handle a pre-flight request by finding and applying the CORS configuration that matches the expected actual request. As a result of handling, the response should be updated with CORS headers or rejected withHttpStatus.FORBIDDEN
.- Parameters:
exchange
- the exchange for the request- Returns:
- a completion handle
-