Uses of Interface
org.springframework.web.cors.CorsConfigurationSource
Package
Description
Support for CORS (Cross-Origin Resource Sharing),
based on a common
CorsProcessor
strategy.Provides generic filter base classes allowing for bean-style configuration.
Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
Support classes for serving static resources.
Support classes for SockJS including an
AbstractSockJsService
implementation.Server-side support for SockJS transports including
TransportHandler
implementations
for processing incoming requests, their
session
counterparts for sending messages over the various transports, and
DefaultSockJsService
.TransportHandler
implementation classes as well as a concrete
SockJsService
.-
Uses of CorsConfigurationSource in org.springframework.web.cors
Modifier and TypeClassDescriptionclass
CorsConfigurationSource
that uses URL path patterns to select theCorsConfiguration
for a request. -
Uses of CorsConfigurationSource in org.springframework.web.filter
ModifierConstructorDescriptionCorsFilter
(CorsConfigurationSource configSource) Constructor accepting aCorsConfigurationSource
used by the filter to find theCorsConfiguration
to use for each incoming request. -
Uses of CorsConfigurationSource in org.springframework.web.servlet.handler
Modifier and TypeClassDescriptionclass
Helper class to get information from theHandlerMapping
that would serve a specific request.Modifier and TypeMethodDescriptionAbstractHandlerMapping.getCorsConfigurationSource()
Return theconfigured
CorsConfigurationSource
, if any.Modifier and TypeMethodDescriptionvoid
AbstractHandlerMapping.setCorsConfigurationSource
(CorsConfigurationSource source) Set aCorsConfigurationSource
for "global" CORS config. -
Uses of CorsConfigurationSource in org.springframework.web.servlet.resource
Modifier and TypeClassDescriptionclass
HttpRequestHandler
that serves static resources in an optimized way according to the guidelines of Page Speed, YSlow, etc. -
Uses of CorsConfigurationSource in org.springframework.web.socket.sockjs.support
Modifier and TypeClassDescriptionclass
An abstract base class forSockJsService
implementations that provides SockJS path resolution and handling of static SockJS requests (e.g.class
AnHttpRequestHandler
that allows mapping aSockJsService
to requests in a Servlet container. -
Uses of CorsConfigurationSource in org.springframework.web.socket.sockjs.transport
Modifier and TypeClassDescriptionclass
A basic implementation ofSockJsService
with support for SPI-based transport handling and session management. -
Uses of CorsConfigurationSource in org.springframework.web.socket.sockjs.transport.handler
Modifier and TypeClassDescriptionclass
A default implementation ofSockJsService
with all defaultTransportHandler
implementations pre-registered.