abstract class CorsUtils
Utility class for CORS reactive request handling based on the CORS W3C recommendation. |
|
open class CorsWebFilter : WebFilter
WebFilter that handles CORS preflight requests and intercepts CORS simple and actual requests thanks to a CorsProcessor implementation (DefaultCorsProcessor by default) in order to add the relevant CORS response headers (like This is an alternative to Spring WebFlux Java config CORS configuration, mostly useful for applications using the functional API. |
|
open class DefaultCorsProcessor : CorsProcessor
The default implementation of CorsProcessor, as defined by the CORS W3C recommendation. Note that when input CorsConfiguration is |
|
open class UrlBasedCorsConfigurationSource : CorsConfigurationSource
Provide a per reactive request CorsConfiguration instance based on a collection of CorsConfiguration mapped on path patterns. Exact path mapping URIs (such as |