Decode resourcePath for classpath locations

Closes gh-22272
This commit is contained in:
Rossen Stoyanchev
2019-04-05 16:23:20 -04:00
parent da557e7415
commit 6cabb79f0f
5 changed files with 33 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ import org.springframework.util.MultiValueMap;
public interface PathContainer {
/**
* The original path that was parsed.
* The original (raw, encoded) path that this instance was parsed from.
*/
String value();
@@ -83,7 +83,7 @@ public interface PathContainer {
interface Element {
/**
* Return the original, raw (encoded) value for the path component.
* Return the original (raw, encoded) value of this path element.
*/
String value();
}