Class AbstractHandlerMapping
- All Implemented Interfaces:
Aware
,BeanNameAware
,ApplicationContextAware
,Ordered
,HandlerMapping
- Direct Known Subclasses:
AbstractHandlerMethodMapping
,AbstractUrlHandlerMapping
,RouterFunctionMapping
HandlerMapping
implementations.- Since:
- 5.0
- Author:
- Rossen Stoyanchev, Juergen Hoeller, Brian Clozel
-
Field Summary
Modifier and TypeFieldDescriptionprotected final Log
Dedicated "hidden" logger for request mappings.Fields inherited from class org.springframework.context.support.ApplicationObjectSupport
logger
Fields inherited from interface org.springframework.web.reactive.HandlerMapping
BEST_MATCHING_HANDLER_ATTRIBUTE, BEST_MATCHING_PATTERN_ATTRIBUTE, MATRIX_VARIABLES_ATTRIBUTE, PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE, PRODUCIBLE_MEDIA_TYPES_ATTRIBUTE, URI_TEMPLATE_VARIABLES_ATTRIBUTE
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected String
protected CorsConfiguration
getCorsConfiguration
(Object handler, ServerWebExchange exchange) Retrieve the CORS configuration for the given handler.Return the configuredCorsProcessor
.reactor.core.publisher.Mono<Object>
getHandler
(ServerWebExchange exchange) Return a handler for this request.protected abstract reactor.core.publisher.Mono<?>
getHandlerInternal
(ServerWebExchange exchange) Look up a handler for the given request, returning an emptyMono
if no specific one is found.int
getOrder()
Get the order value of this object.Return thePathPatternParser
instance that is used forCORS configuration checks
.protected boolean
hasCorsConfigurationSource
(Object handler) Returntrue
if there is aCorsConfigurationSource
for this handler.void
setBeanName
(String name) Set the name of the bean in the bean factory that created this bean.void
setCorsConfigurations
(Map<String, CorsConfiguration> corsConfigurations) Set the "global" CORS configurations based on URL patterns.void
setCorsConfigurationSource
(CorsConfigurationSource corsConfigurationSource) Set the "global" CORS configuration source.void
setCorsProcessor
(CorsProcessor corsProcessor) Configure a customCorsProcessor
to use to apply the matchedCorsConfiguration
for a request.void
setOrder
(int order) Specify the order value for this HandlerMapping bean.void
setUseCaseSensitiveMatch
(boolean caseSensitiveMatch) Shortcut method for setting the same property on the underlying pattern parser in use.void
setUseTrailingSlashMatch
(boolean trailingSlashMatch) Deprecated.Methods inherited from class org.springframework.context.support.ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, initApplicationContext, isContextRequired, obtainApplicationContext, requiredContextClass, setApplicationContext
-
Field Details
-
mappingsLogger
Dedicated "hidden" logger for request mappings.
-
-
Constructor Details
-
AbstractHandlerMapping
public AbstractHandlerMapping()
-
-
Method Details
-
setUseCaseSensitiveMatch
public void setUseCaseSensitiveMatch(boolean caseSensitiveMatch) Shortcut method for setting the same property on the underlying pattern parser in use. For more details see:getPathPatternParser()
-- the underlying pattern parserPathPatternParser.setCaseSensitive(boolean)
-- the case sensitive slash option, including its default value.
Note: aside from
-
setUseTrailingSlashMatch
Deprecated.as of 6.0, seePathPatternParser.setMatchOptionalTrailingSeparator(boolean)
Shortcut method for setting the same property on the underlying pattern parser in use. For more details see:getPathPatternParser()
-- the underlying pattern parserPathPatternParser.setMatchOptionalTrailingSeparator(boolean)
-- the trailing slash option, including its default value.
The default was changed in 6.0 from
true
tofalse
in order to support the deprecation of the property. -
getPathPatternParser
Return thePathPatternParser
instance that is used forCORS configuration checks
. Subclasses can also use this pattern parser for their own request mapping purposes. -
setCorsConfigurations
Set the "global" CORS configurations based on URL patterns. By default, the first matching URL pattern is combined with handler-level CORS configuration if any. -
setCorsConfigurationSource
Set the "global" CORS configuration source. By default, the first matching URL pattern is combined with the CORS configuration for the handler, if any.- Since:
- 5.1
- See Also:
-
setCorsProcessor
Configure a customCorsProcessor
to use to apply the matchedCorsConfiguration
for a request.By default an instance of
DefaultCorsProcessor
is used. -
getCorsProcessor
Return the configuredCorsProcessor
. -
setOrder
public void setOrder(int order) Specify the order value for this HandlerMapping bean.The default value is
Ordered.LOWEST_PRECEDENCE
, meaning non-ordered.- See Also:
-
getOrder
public int getOrder()Description copied from interface:Ordered
Get the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet
load-on-startup
values).Same order values will result in arbitrary sort positions for the affected objects.
-
setBeanName
Description copied from interface:BeanNameAware
Set the name of the bean in the bean factory that created this bean.Invoked after population of normal bean properties but before an init callback such as
InitializingBean.afterPropertiesSet()
or a custom init-method.- Specified by:
setBeanName
in interfaceBeanNameAware
- Parameters:
name
- the name of the bean in the factory. Note that this name is the actual bean name used in the factory, which may differ from the originally specified name: in particular for inner bean names, the actual bean name might have been made unique through appending "#..." suffixes. Use theBeanFactoryUtils.originalBeanName(String)
method to extract the original bean name (without suffix), if desired.
-
formatMappingName
-
getHandler
Description copied from interface:HandlerMapping
Return a handler for this request.Before returning a handler, an implementing method should check for CORS configuration associated with the handler, apply validation checks based on it, and update the response accordingly. For pre-flight requests, the same should be done based on the handler matching to the expected actual request.
- Specified by:
getHandler
in interfaceHandlerMapping
- Parameters:
exchange
- current server exchange- Returns:
- a
Mono
that emits one value or none in case the request cannot be resolved to a handler
-
getHandlerInternal
Look up a handler for the given request, returning an emptyMono
if no specific one is found. This method is called bygetHandler(org.springframework.web.server.ServerWebExchange)
.On CORS pre-flight requests this method should return a match not for the pre-flight request but for the expected actual request based on the URL path, the HTTP methods from the "Access-Control-Request-Method" header, and the headers from the "Access-Control-Request-Headers" header.
- Parameters:
exchange
- current exchange- Returns:
Mono
for the matching handler, if any
-
hasCorsConfigurationSource
Returntrue
if there is aCorsConfigurationSource
for this handler.- Since:
- 5.2
-
getCorsConfiguration
@Nullable protected CorsConfiguration getCorsConfiguration(Object handler, ServerWebExchange exchange) Retrieve the CORS configuration for the given handler.- Parameters:
handler
- the handler to check (nevernull
)exchange
- the current exchange- Returns:
- the CORS configuration for the handler, or
null
if none
-
PathPatternParser.setMatchOptionalTrailingSeparator(boolean)