Add support for placeholders in @RequestMapping

@RequestMapping annotations now support ${...} placeholders.

Issue: SPR-9935
This commit is contained in:
Rossen Stoyanchev
2013-01-07 18:03:40 -05:00
parent 15c0971381
commit 7bc9667913
4 changed files with 61 additions and 5 deletions

View File

@@ -266,6 +266,7 @@ public @interface RequestMapping {
* Ant-style path patterns are also supported (e.g. "/myPath/*.do").
* At the method level, relative paths (e.g. "edit.do") are supported
* within the primary mapping expressed at the type level.
* Path mapping URIs may contain placeholders (e.g. "/${connect}")
* <p>In a Portlet environment: the mapped portlet modes
* (i.e. "EDIT", "VIEW", "HELP" or any custom modes).
* <p><b>Supported at the type level as well as at the method level!</b>