From a3778780389e0435ffcf886b9e72c208a713376f Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Mon, 27 Oct 2014 17:27:24 -0400 Subject: [PATCH] Minor doc update Issue: SPR-12375 --- src/asciidoc/index.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index 1241783419..d87a69564e 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -30298,6 +30298,11 @@ application shows a multi-action controller using `@RequestMapping`: } ---- +The above example does not specify GET vs. PUT, POST, and so forth, because +`@RequestMapping` maps all HTTP methods by default. Use `@RequestMapping(method=GET)` +to narrow the mapping. + + [[mvc-ann-requestmapping-proxying]] ===== ++@Controller++'s and AOP Proxying