org.springframework.web.bind.annotation |
Annotations for binding requests to controllers and handler methods
as well as for binding request parameters to method arguments.
|
Java Source File Name | Type | Comment |
InitBinder.java | Annotation | Annotation that identifies methods which initialize the
org.springframework.web.bind.WebDataBinder which
will be used for populating command and form object arguments
of annotated handler methods.
Such init-binder methods support all arguments that
RequestMapping supports, except for command/form objects and corresponding validation result
objects. |
ModelAttribute.java | Annotation | Annotation that binds a method parameter or method return value
to a named model attribute, exposed to a web view. |
RequestMapping.java | Annotation | Annotation for mapping web requests onto specific handler classes and/or
handler methods. |
RequestMethod.java | enum | Java 5 enumeration of HTTP request methods. |
RequestParam.java | Annotation | Annotation which indicates that a method parameter should be bound
to a web request parameter. |
SessionAttributes.java | Annotation | Annotation that indicates the session attributes that a specific handler
uses. |