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 Mar 20, 2023
1 parent 5d02b71 commit b6c1142
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 b6c1142

Please sign in to comment.