master
Arjen Poutsma 15 years ago
parent bc4d52a7e3
commit f1075c7b04
  1. 5
      org.springframework.web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java

@ -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