|
|
|
|
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
|
|
|
|
/* |
|
|
|
|
* Copyright 2002-2016 the original author or authors. |
|
|
|
|
* Copyright 2002-2019 the original author or authors. |
|
|
|
|
* |
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
|
@ -23,7 +23,7 @@ import org.springframework.util.StringUtils;
@@ -23,7 +23,7 @@ import org.springframework.util.StringUtils;
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Implementation of the {@link org.springframework.web.servlet.HandlerMapping} |
|
|
|
|
* interface that map from URLs to beans with names that start with a slash ("/"), |
|
|
|
|
* interface that maps from URLs to beans with names that start with a slash ("/"), |
|
|
|
|
* similar to how Struts maps URLs to action names. |
|
|
|
|
* |
|
|
|
|
* <p>This is the default implementation used by the |
|
|
|
|
@ -34,11 +34,10 @@ import org.springframework.util.StringUtils;
@@ -34,11 +34,10 @@ import org.springframework.util.StringUtils;
|
|
|
|
|
* |
|
|
|
|
* <p>The mapping is from URL to bean name. Thus an incoming URL "/foo" would map |
|
|
|
|
* to a handler named "/foo", or to "/foo /foo2" in case of multiple mappings to |
|
|
|
|
* a single handler. Note: In XML definitions, you'll need to use an alias |
|
|
|
|
* name="/foo" in the bean definition, as the XML id may not contain slashes. |
|
|
|
|
* a single handler. |
|
|
|
|
* |
|
|
|
|
* <p>Supports direct matches (given "/test" -> registered "/test") and "*" |
|
|
|
|
* matches (given "/test" -> registered "/t*"). Note that the default is |
|
|
|
|
* <p>Supports direct matches (given "/test" -> registered "/test") and "*" |
|
|
|
|
* matches (given "/test" -> registered "/t*"). Note that the default is |
|
|
|
|
* to map within the current servlet mapping if applicable; see the |
|
|
|
|
* {@link #setAlwaysUseFullPath "alwaysUseFullPath"} property for details. |
|
|
|
|
* For details on the pattern options, see the |
|
|
|
|
|