You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using RedirectView to redirect to a URL that includes a path variable the model value is not correctly URL encoded. This differs from the query parameter where URL encoding occurs.
Eg:
RedirectViewview = newRedirectView("/ab/{cd}");
view.render(Collections.singletonMap("cd", "C D"), request, response);
// Currently throws URISyntaxException, Should redirect to /ab/C+D