List of usage examples for org.springframework.web.reactive.result.method SyncInvocableHandlerMethod SyncInvocableHandlerMethod
public SyncInvocableHandlerMethod(Object bean, Method method)
From source file:org.springframework.web.reactive.result.method.annotation.ControllerMethodResolver.java
private SyncInvocableHandlerMethod getInitBinderMethod(Object bean, Method method) { SyncInvocableHandlerMethod invocable = new SyncInvocableHandlerMethod(bean, method); invocable.setArgumentResolvers(this.initBinderResolvers); return invocable; }