List of usage examples for org.springframework.web.reactive.result.method InvocableHandlerMethod InvocableHandlerMethod
public InvocableHandlerMethod(HandlerMethod handlerMethod)
From source file:org.springframework.web.reactive.result.method.annotation.ControllerMethodResolver.java
/** * Return an {@link InvocableHandlerMethod} for the given * {@code @RequestMapping} method initialized with argument resolvers. *///w w w . j ava 2s. c om public InvocableHandlerMethod getRequestMappingMethod(HandlerMethod handlerMethod) { InvocableHandlerMethod invocable = new InvocableHandlerMethod(handlerMethod); invocable.setArgumentResolvers(this.requestMappingResolvers); invocable.setReactiveAdapterRegistry(this.reactiveAdapterRegistry); return invocable; }