git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2262 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Arjen Poutsma
2009-11-05 10:17:37 +00:00
parent 687153d9e5
commit ee39324da4
@@ -76,7 +76,10 @@ import java.lang.annotation.Target;
* converted to the declared method argument type.
* <li>{@link RequestParam @RequestParam} annotated parameters for access to
* specific Servlet/Portlet request parameters. Parameter values will be
* converted to the declared method argument type.
* converted to the declared method argument type. Additionally,
* {@code RequestParam @RequestParam} can be used on a {@link java.util.Map Map} or
* {@link org.springframework.util.MultiValueMap MultiValueMap} to gain access
* to all request parameters.
* <li>{@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.