Java org.springframework.web.servlet.mvc.method.annotation ServletInvocableHandlerMethod fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.servlet.mvc.method.annotation ServletInvocableHandlerMethod fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.servlet.mvc.method.annotation ServletInvocableHandlerMethod.

The text is from its open source code.

Constructor

ServletInvocableHandlerMethod(Object handler, Method method)
Creates an instance from the given handler and method.
ServletInvocableHandlerMethod(HandlerMethod handlerMethod)
Create an instance from a HandlerMethod .

Method

ObjectinvokeForRequest(NativeWebRequest request, @Nullable ModelAndViewContainer mavContainer, Object... providedArgs)
Invoke the method after resolving its argument values in the context of the given request.
voidsetDataBinderFactory(WebDataBinderFactory dataBinderFactory)
Set the WebDataBinderFactory to be passed to argument resolvers allowing them to create a WebDataBinder for data binding and type conversion purposes.
voidsetHandlerMethodArgumentResolvers(HandlerMethodArgumentResolverComposite argumentResolvers)
Set HandlerMethodArgumentResolver HandlerMethodArgumentResolvers to use to use for resolving method argument values.
voidsetHandlerMethodReturnValueHandlers(HandlerMethodReturnValueHandlerComposite returnValueHandlers)
Register HandlerMethodReturnValueHandler instances to use to handle return values.