Package org.springframework.web.cors
Interface PreFlightRequestHandler
- All Known Implementing Classes:
HandlerMappingIntrospector
public interface PreFlightRequestHandler
Handler for CORS pre-flight requests.
- Since:
- 6.2
- Author:
- Rossen Stoyanchev
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandlePreFlight(HttpServletRequest request, HttpServletResponse response) 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:
request- current HTTP requestresponse- current HTTP response- Throws:
Exception
-