Uses of Class
org.springframework.web.method.HandlerMethod
Packages that use HandlerMethod
Package
Description
Common infrastructure for handler method processing, as used by
Spring MVC's
org.springframework.web.servlet.mvc.method
package.Support classes for annotation-based handler method processing.
Generic support classes for handler method processing.
-
Uses of HandlerMethod in org.springframework.web.method
Methods in org.springframework.web.method that return HandlerMethodModifier and TypeMethodDescriptionHandlerMethod.createWithResolvedBean()
If the provided instance contains a bean name rather than an object instance, the bean name is resolved before aHandlerMethod
is created and returned.HandlerMethod.getResolvedFromHandlerMethod()
Return the HandlerMethod from which this HandlerMethod instance was resolved viacreateWithResolvedBean()
.Constructors in org.springframework.web.method with parameters of type HandlerMethodModifierConstructorDescriptionprotected
HandlerMethod
(HandlerMethod handlerMethod) Copy constructor for use in subclasses. -
Uses of HandlerMethod in org.springframework.web.method.annotation
Methods in org.springframework.web.method.annotation with parameters of type HandlerMethodModifier and TypeMethodDescriptionvoid
ModelFactory.initModel
(NativeWebRequest request, ModelAndViewContainer container, HandlerMethod handlerMethod) Populate the model in the following order: Retrieve "known" session attributes listed as@SessionAttributes
.protected boolean
InitBinderDataBinderFactory.isBinderMethodApplicable
(HandlerMethod initBinderMethod, WebDataBinder dataBinder) Determine whether the given@InitBinder
method should be used to initialize the givenWebDataBinder
instance. -
Uses of HandlerMethod in org.springframework.web.method.support
Subclasses of HandlerMethod in org.springframework.web.method.supportModifier and TypeClassDescriptionclass
Extension ofHandlerMethod
that invokes the underlying method with argument values resolved from the current HTTP request through a list ofHandlerMethodArgumentResolver
.Constructors in org.springframework.web.method.support with parameters of type HandlerMethodModifierConstructorDescriptionInvocableHandlerMethod
(HandlerMethod handlerMethod) Create an instance from aHandlerMethod
.