Browse Source

javadoc.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2262 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Arjen Poutsma 16 years ago
parent
commit
ee39324da4
  1. 5
      org.springframework.web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java

5
org.springframework.web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java

@ -76,7 +76,10 @@ import java.lang.annotation.Target; @@ -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.

Loading…
Cancel
Save