Support charset config by (static) resource location

This commit adds support for configuring static resource locations
with a charset to be applied to relative paths.
This commit is contained in:
Rossen Stoyanchev
2017-11-03 21:06:42 -04:00
parent 97bc2762e1
commit 9470719cdb
13 changed files with 396 additions and 36 deletions

View File

@@ -96,6 +96,14 @@ public class UrlPathHelper {
this.urlDecode = urlDecode;
}
/**
* Whether to decode the request URI when determining the lookup path.
* @since 4.3.13
*/
public boolean isUrlDecode() {
return this.urlDecode;
}
/**
* Set if ";" (semicolon) content should be stripped from the request URI.
* <p>Default is "true".