The following are the supported method arguments:
ServletRequest
or HttpServletRequest
.HttpSession
. An argument of this type enforces the presence of a corresponding session. As a consequence, such an argument is never null
. Session access may not be thread-safe, in particular in a Servlet environment. Consider setting the RequestMappingHandlerAdapter's "synchronizeOnSession" flag to "true" if multiple requests are allowed to access a session concurrently. |
org.springframework.web.context.request.WebRequest
or org.springframework.web.context.request.NativeWebRequest
. Allows for generic request parameter access as well as request/session attribute access, without ties to the native Servlet/Portlet API.java.util.Locale
for the current request locale, determined by the most specific locale resolver available, in effect, the configured LocaleResolver
/LocaleContextResolver
in an MVC environment.java.util.TimeZone
(Java 6+) / java.time.ZoneId
(on Java 8) for the time zone associated with the current request, as determined by aLocaleContextResolver
.java.io.InputStream
/ java.io.Reader
for access to the request’s content. This value is the raw InputStream/Reader as exposed by the Servlet API.java.io.OutputStream
/ java.io.Writer
for generating the response’s content. This value is the raw OutputStream/Writer as exposed by the Servlet API.org.springframework.http.HttpMethod
for the HTTP request method.java.security.Principal
containing the currently authenticated user.@PathVariable
annotated parameters for access to URI template variables. See the section called “URI Template Patterns”.@MatrixVariable
annotated parameters for access to name-value pairs located in URI path segments. See the section called “Matrix Variables”.@RequestParam
annotated parameters for access to specific Servlet request parameters. Parameter values are converted to the declared method argument type. Seethe section called “Binding request parameters to method parameters with @RequestParam”.@RequestHeader
annotated parameters for access to specific Servlet request HTTP headers. Parameter values are converted to the declared method argument type. See the section called “Mapping request header attributes with the @RequestHeader annotation”.@RequestBody
annotated parameters for access to the HTTP request body. Parameter values are converted to the declared method argument type using HttpMessageConverters. See the section called “Mapping the request body with the @RequestBody annotation”.@RequestPart
annotated parameters for access to the content of a "multipart/form-data" request part. See Section 21.10.5, “Handling a file upload request from programmatic clients” and Section 21.10, “Spring’s multipart (file upload) support”.HttpEntity>
parameters for access to the Servlet request HTTP headers and contents. The request stream will be converted to the entity body using HttpMessageConverters. See the section called “Using HttpEntity”.java.util.Map
/ org.springframework.ui.Model
/ org.springframework.ui.ModelMap
for enriching the implicit model that is exposed to the web view.org.springframework.web.servlet.mvc.support.RedirectAttributes
to specify the exact set of attributes to use in case of a redirect and also to add flash attributes (attributes stored temporarily on the server-side to make them available to the request after the redirect). See the section called “Passing Data To the Redirect Target” and Section 21.6, “Using flash attributes”.@InitBinder
methods and/or the HandlerAdapter configuration. See the webBindingInitializer
property on RequestMappingHandlerAdapter
. Such command objects along with their validation results will be exposed as model attributes by default, using the command class class name - e.g. model attribute "orderAddress" for a command object of type "some.package.OrderAddress". The ModelAttribute
annotation can be used on a method argument to customize the model attribute name used.org.springframework.validation.Errors
/ org.springframework.validation.BindingResult
validation results for a preceding command or form object (the immediately preceding method argument).org.springframework.web.bind.support.SessionStatus
status handle for marking form processing as complete, which triggers the cleanup of session attributes that have been indicated by the @SessionAttributes
annotation at the handler type level.org.springframework.web.util.UriComponentsBuilder
a builder for preparing a URL relative to the current request’s host, port, scheme, context path, and the literal part of the servlet mapping. The Errors
or BindingResult
parameters have to follow the model object that is being bound immediately as the method signature might have more that one model object and Spring will create a separate BindingResult
instance for each of them so the following sample won’t work:
Invalid ordering of BindingResult and @ModelAttribute.
@RequestMapping(method = RequestMethod.POST) public String processSubmit(@ModelAttribute("pet") Pet pet, Model model, BindingResult result) { ... }
Note, that there is a Model
parameter in between Pet
and BindingResult
. To get this working you have to reorder the parameters as follows:
@RequestMapping(method = RequestMethod.POST) public String processSubmit(@ModelAttribute("pet") Pet pet, BindingResult result, Model model) { ... }
JDK 1.8’s |
The following are the supported return types:
ModelAndView
object, with the model implicitly enriched with command objects and the results of @ModelAttribute
annotated reference data accessor methods.Model
object, with the view name implicitly determined through a RequestToViewNameTranslator
and the model implicitly enriched with command objects and the results of @ModelAttribute
annotated reference data accessor methods.Map
object for exposing a model, with the view name implicitly determined through a RequestToViewNameTranslator
and the model implicitly enriched with command objects and the results of @ModelAttribute
annotated reference data accessor methods.View
object, with the model implicitly determined through command objects and @ModelAttribute
annotated reference data accessor methods. The handler method may also programmatically enrich the model by declaring a Model
argument (see above).String
value that is interpreted as the logical view name, with the model implicitly determined through command objects and @ModelAttribute
annotated reference data accessor methods. The handler method may also programmatically enrich the model by declaring a Model
argument (see above).void
if the method handles the response itself (by writing the response content directly, declaring an argument of type ServletResponse
/ HttpServletResponse
for that purpose) or if the view name is supposed to be implicitly determined through a RequestToViewNameTranslator
(not declaring a response argument in the handler method signature).@ResponseBody
, the return type is written to the response HTTP body. The return value will be converted to the declared method argument type using HttpMessageConverters. See the section called “Mapping the response body with the @ResponseBody annotation”.HttpEntity>
or ResponseEntity>
object to provide access to the Servlet response HTTP headers and contents. The entity body will be converted to the response stream using HttpMessageConverters. See the section called “Using HttpEntity”.HttpHeaders
object to return a response with no body.Callable>
can be returned when the application wants to produce the return value asynchronously in a thread managed by Spring MVC.DeferredResult>
can be returned when the application wants to produce the return value from a thread of its own choosing.ListenableFuture>
can be returned when the application wants to produce the return value from a thread of its own choosing.ResponseBodyEmitter
can be returned to write multiple objects to the response asynchronously; also supported as the body within a ResponseEntity
.SseEmitter
can be returned to write Server-Sent Events to the response asynchronously; also supported as the body within a ResponseEntity
.StreamingResponseBody
can be returned to write to the response OutputStream asynchronously; also supported as the body within a ResponseEntity
.@ModelAttribute
at the method level (or the default attribute name based on the return type class name). The model is implicitly enriched with command objects and the results of @ModelAttribute
annotated reference data accessor methods.