SPR-8596 Detect case in UriPathHelper where originating request query (before forwarding) is null.
This commit is contained in:
@@ -287,14 +287,15 @@ public class UrlPathHelper {
|
||||
* @return the query string
|
||||
*/
|
||||
public String getOriginatingQueryString(HttpServletRequest request) {
|
||||
String queryString = (String) request.getAttribute(WebUtils.FORWARD_QUERY_STRING_ATTRIBUTE);
|
||||
if (queryString == null) {
|
||||
queryString = request.getQueryString();
|
||||
if ((request.getAttribute(WebUtils.FORWARD_REQUEST_URI_ATTRIBUTE) != null) ||
|
||||
(request.getAttribute(WebUtils.ERROR_REQUEST_URI_ATTRIBUTE) != null)) {
|
||||
return (String) request.getAttribute(WebUtils.FORWARD_QUERY_STRING_ATTRIBUTE);
|
||||
}
|
||||
else {
|
||||
return request.getQueryString();
|
||||
}
|
||||
return queryString;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Decode the supplied URI string and strips any extraneous portion after a ';'.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user