Class RouterFunctionMapping
- All Implemented Interfaces:
Aware
,BeanNameAware
,InitializingBean
,ApplicationContextAware
,Ordered
,HandlerMapping
HandlerMapping
implementation that supports RouterFunctions
.
If no RouterFunction
is provided at
construction time, this mapping
will detect all router functions in the application context, and consult them in
order.
- Since:
- 5.0
- Author:
- Arjen Poutsma
-
Field Summary
Fields inherited from class org.springframework.web.reactive.handler.AbstractHandlerMapping
mappingsLogger
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
ConstructorDescriptionCreate an emptyRouterFunctionMapping
.RouterFunctionMapping
(RouterFunction<?> routerFunction) Create aRouterFunctionMapping
with the givenRouterFunction
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.protected reactor.core.publisher.Mono<?>
getHandlerInternal
(ServerWebExchange exchange) Look up a handler for the given request, returning an emptyMono
if no specific one is found.Return the configuredRouterFunction
.protected void
Initialized the router functions by detecting them in the application context.void
setMessageReaders
(List<HttpMessageReader<?>> messageReaders) Configure HTTP message readers to de-serialize the request body with.Methods inherited from class org.springframework.web.reactive.handler.AbstractHandlerMapping
formatMappingName, getCorsConfiguration, getCorsProcessor, getHandler, getOrder, getPathPatternParser, hasCorsConfigurationSource, setBeanName, setCorsConfigurations, setCorsConfigurationSource, setCorsProcessor, setOrder, setUseCaseSensitiveMatch, setUseTrailingSlashMatch
Methods inherited from class org.springframework.context.support.ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, initApplicationContext, isContextRequired, obtainApplicationContext, requiredContextClass, setApplicationContext
-
Constructor Details
-
RouterFunctionMapping
public RouterFunctionMapping()Create an emptyRouterFunctionMapping
.If this constructor is used, this mapping will detect all
RouterFunction
instances available in the application context. -
RouterFunctionMapping
Create aRouterFunctionMapping
with the givenRouterFunction
.If this constructor is used, no application context detection will occur.
- Parameters:
routerFunction
- the router function to use for mapping
-
-
Method Details
-
getRouterFunction
Return the configuredRouterFunction
.Note: When router functions are detected from the ApplicationContext, this method may return
null
if invoked prior toafterPropertiesSet()
.- Returns:
- the router function or
null
-
setMessageReaders
Configure HTTP message readers to de-serialize the request body with.By default this is set to the
ServerCodecConfigurer
's defaults. -
afterPropertiesSet
Description copied from interface:InitializingBean
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- Specified by:
afterPropertiesSet
in interfaceInitializingBean
- Throws:
Exception
- in the event of misconfiguration (such as failure to set an essential property) or if initialization fails for any other reason
-
initRouterFunctions
protected void initRouterFunctions()Initialized the router functions by detecting them in the application context. -
getHandlerInternal
Description copied from class:AbstractHandlerMapping
Look up a handler for the given request, returning an emptyMono
if no specific one is found. This method is called byAbstractHandlerMapping.getHandler(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.
- Specified by:
getHandlerInternal
in classAbstractHandlerMapping
- Parameters:
exchange
- current exchange- Returns:
Mono
for the matching handler, if any
-