public class HandlerMappingIntrospector extends Object implements org.springframework.web.cors.CorsConfigurationSource
HandlerMapping
that would
serve a specific request.
Provides the following methods:
getMatchableHandlerMapping(javax.servlet.http.HttpServletRequest)
— obtain a HandlerMapping
to check request-matching criteria against.
getCorsConfiguration(javax.servlet.http.HttpServletRequest)
— obtain the CORS configuration for the
request.
Constructor and Description |
---|
HandlerMappingIntrospector(org.springframework.context.ApplicationContext context)
Constructor that detects the configured
HandlerMapping s in the
given ApplicationContext or falls back on
"DispatcherServlet.properties" like the DispatcherServlet . |
Modifier and Type | Method and Description |
---|---|
org.springframework.web.cors.CorsConfiguration |
getCorsConfiguration(HttpServletRequest request) |
List<HandlerMapping> |
getHandlerMappings()
Return the configured HandlerMapping's.
|
MatchableHandlerMapping |
getMatchableHandlerMapping(HttpServletRequest request)
Find the
HandlerMapping that would handle the given request and
return it as a MatchableHandlerMapping that can be used to test
request-matching criteria. |
public HandlerMappingIntrospector(org.springframework.context.ApplicationContext context)
HandlerMapping
s in the
given ApplicationContext
or falls back on
"DispatcherServlet.properties" like the DispatcherServlet
.public List<HandlerMapping> getHandlerMappings()
public MatchableHandlerMapping getMatchableHandlerMapping(HttpServletRequest request) throws Exception
HandlerMapping
that would handle the given request and
return it as a MatchableHandlerMapping
that can be used to test
request-matching criteria.
If the matching HandlerMapping is not an instance of
MatchableHandlerMapping
, an IllegalStateException is raised.
request
- the current requestnull
Exception
- if any of the HandlerMapping's raise an exceptionpublic org.springframework.web.cors.CorsConfiguration getCorsConfiguration(HttpServletRequest request)
getCorsConfiguration
in interface org.springframework.web.cors.CorsConfigurationSource