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-01 03:52:32 -04:00
parent db00669197
commit 369d33c3d0
13 changed files with 378 additions and 34 deletions

View File

@@ -104,6 +104,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".