From 81b3fb47b263d7dbc02ba5d6d653a782fecefa4e Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Wed, 10 Jun 2009 10:36:06 +0000 Subject: [PATCH] Javadoc git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1341 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../web/bind/annotation/RequestMapping.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java b/org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java index c5d0e0c4c35..79c7e7b3aaf 100644 --- a/org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java +++ b/org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java @@ -69,12 +69,20 @@ import java.lang.annotation.Target; *
  • {@link java.io.OutputStream} / {@link java.io.Writer} for generating * the response's content. This will be the raw OutputStream/Writer as * exposed by the Servlet/Portlet API. + *
  • {@link PathVariable @PathVariable} annotated parameters for acces to + * URI template values (i.e. /hotels/{hotel}). Variable values will be + * converted to the declared method argument type. *
  • {@link RequestParam @RequestParam} annotated parameters for access to * specific Servlet/Portlet request parameters. Parameter values will be * converted to the declared method argument type. - *
  • {@link PathVariable @PathVariable} annotated parameters for acces to - * URI template values (i.e. /hotels/{hotel}). Variable values will be + *
  • {@link RequestHeader @RequestHeader} annotated parameters for access to + * specific Servlet/Portlet request HTTP headers. Parameter values will be * converted to the declared method argument type. + *
  • {@link RequestBody @RequestBody} annotated parameters for access to + * the Servlet request HTTP contents. Parameter values will be + * converted to the declared method argument type using + * {@linkplain org.springframework.http.converter.HttpMessageConverter message + * converters}. *
  • {@link java.util.Map} / {@link org.springframework.ui.Model} / * {@link org.springframework.ui.ModelMap} for enriching the implicit model * that will be exposed to the web view.