Skip to content

Commit

Permalink
Fix #12: page not found - Id null in controller
Browse files Browse the repository at this point in the history
  • Loading branch information
maiconandsilva committed Sep 20, 2022
1 parent 209ed8d commit af27bb2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
if (info.isParsingRequest()) {
webRequest.informParameterCreationListeners();
}
// TODO: verify
String forwardUrl = UrlMappingUtils.forwardRequestForUrlMappingInfo(request, response, info);
String forwardUrl = UrlMappingUtils.forwardRequestForUrlMappingInfo(request, response, info, Collections.emptyMap(), true);
if (LOG.isDebugEnabled()) {
LOG.debug("Matched URI [" + uri + "] to URL mapping [" + info + "], forwarding to [" + forwardUrl + "] with response [" + response.getClass() + "]");
}
Expand Down

0 comments on commit af27bb2

Please sign in to comment.