Class InvocableHandlerMethod
java.lang.Object
org.springframework.web.method.HandlerMethod
org.springframework.web.reactive.result.method.InvocableHandlerMethod
Extension of 
HandlerMethod that invokes the underlying method with
 argument values resolved from the current HTTP request through a list of
 HandlerMethodArgumentResolver.- Since:
- 5.0
- Author:
- Rossen Stoyanchev, Juergen Hoeller, Sebastien Deleuze
- 
Nested Class SummaryNested classes/interfaces inherited from class org.springframework.web.method.HandlerMethodHandlerMethod.HandlerMethodParameter
- 
Field SummaryFields inherited from class org.springframework.web.method.HandlerMethodlogger
- 
Constructor SummaryConstructorsConstructorDescriptionInvocableHandlerMethod(Object bean, Method method) Create an instance from a bean instance and a method.InvocableHandlerMethod(HandlerMethod handlerMethod) Create an instance from aHandlerMethod.
- 
Method SummaryModifier and TypeMethodDescriptionReturn the configured parameter name discoverer.Return the configured argument resolvers.reactor.core.publisher.Mono<HandlerResult>invoke(ServerWebExchange exchange, BindingContext bindingContext, Object... providedArgs) Invoke the method for the given exchange.voidsetArgumentResolvers(List<? extends HandlerMethodArgumentResolver> resolvers) Configure the argument resolvers to use for resolving method argument values against aServerWebExchange.voidsetMethodValidator(MethodValidator methodValidator) Set theMethodValidatorto perform method validation with if the controller methodHandlerMethod.shouldValidateArguments()orHandlerMethod.shouldValidateReturnValue().voidsetParameterNameDiscoverer(ParameterNameDiscoverer nameDiscoverer) Set the ParameterNameDiscoverer for resolving parameter names when needed (e.g.voidConfigure a reactive adapter registry.Methods inherited from class org.springframework.web.method.HandlerMethodassertTargetBean, createWithResolvedBean, equals, findProvidedArgument, formatArgumentError, formatInvokeError, getBean, getBeanType, getBridgedMethod, getMethod, getMethodAnnotation, getMethodParameters, getResolvedFromHandlerMethod, getResponseStatus, getResponseStatusReason, getReturnType, getReturnValueType, getShortLogMessage, hashCode, hasMethodAnnotation, isVoid, shouldValidateArguments, shouldValidateReturnValue, toString
- 
Constructor Details- 
InvocableHandlerMethodCreate an instance from aHandlerMethod.
- 
InvocableHandlerMethodCreate an instance from a bean instance and a method.
 
- 
- 
Method Details- 
setArgumentResolversConfigure the argument resolvers to use for resolving method argument values against aServerWebExchange.
- 
getResolversReturn the configured argument resolvers.
- 
setParameterNameDiscovererSet the ParameterNameDiscoverer for resolving parameter names when needed (e.g. default request attribute name).Default is a DefaultParameterNameDiscoverer.
- 
getParameterNameDiscovererReturn the configured parameter name discoverer.
- 
setReactiveAdapterRegistryConfigure a reactive adapter registry. This is needed for cases where the response is fully handled within the controller in combination with an async void return value.By default this is a ReactiveAdapterRegistrywith default settings.
- 
setMethodValidatorSet theMethodValidatorto perform method validation with if the controller methodHandlerMethod.shouldValidateArguments()orHandlerMethod.shouldValidateReturnValue().- Since:
- 6.1
 
- 
invokepublic reactor.core.publisher.Mono<HandlerResult> invoke(ServerWebExchange exchange, BindingContext bindingContext, Object... providedArgs) Invoke the method for the given exchange.- Parameters:
- exchange- the current exchange
- bindingContext- the binding context to use
- providedArgs- optional list of argument values to match by type
- Returns:
- a Mono with a HandlerResult
 
 
-