Search in sources :

Example 6 with InvocableHandlerMethod

use of org.springframework.web.reactive.result.method.InvocableHandlerMethod in project spring-framework by spring-projects.

the class RequestMappingHandlerAdapter method createHandlerMethod.

private InvocableHandlerMethod createHandlerMethod(Object bean, Method method) {
    InvocableHandlerMethod invocable = new InvocableHandlerMethod(bean, method);
    invocable.setArgumentResolvers(getArgumentResolvers());
    return invocable;
}
Also used : InvocableHandlerMethod(org.springframework.web.reactive.result.method.InvocableHandlerMethod) SyncInvocableHandlerMethod(org.springframework.web.reactive.result.method.SyncInvocableHandlerMethod)

Aggregations

InvocableHandlerMethod (org.springframework.web.reactive.result.method.InvocableHandlerMethod)6 SyncInvocableHandlerMethod (org.springframework.web.reactive.result.method.SyncInvocableHandlerMethod)6 ReactiveAdapterRegistry (org.springframework.core.ReactiveAdapterRegistry)3 WebBindingInitializer (org.springframework.web.bind.support.WebBindingInitializer)3 BindingContext (org.springframework.web.reactive.BindingContext)3 Mono (reactor.core.publisher.Mono)3 Method (java.lang.reflect.Method)2 ArrayList (java.util.ArrayList)2 LinkedHashMap (java.util.LinkedHashMap)2 List (java.util.List)2 Map (java.util.Map)2 Objects (java.util.Objects)2 Optional (java.util.Optional)2 Set (java.util.Set)2 ConcurrentHashMap (java.util.concurrent.ConcurrentHashMap)2 Function (java.util.function.Function)2 Log (org.apache.commons.logging.Log)2 LogFactory (org.apache.commons.logging.LogFactory)2 InitializingBean (org.springframework.beans.factory.InitializingBean)2 ConfigurableBeanFactory (org.springframework.beans.factory.config.ConfigurableBeanFactory)2