!56 🐛 fix a bug #I1H24Z 统一登录错误信息乱码

Merge pull request !56 from 卓广飞/N/A
This commit is contained in:
pig4cloud.com 2020-05-13 16:16:44 +08:00 committed by Gitee
commit b5829c4e6b
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ public class FormAuthenticationFailureHandler implements AuthenticationFailureHa
@SneakyThrows
public void onAuthenticationFailure(HttpServletRequest request, HttpServletResponse response, AuthenticationException exception) {
log.debug("表单登录失败:{}", exception.getLocalizedMessage());
response.sendRedirect(String.format("/token/login?error=%s"
, HttpUtil.encodeParams(exception.getMessage(), Charset.defaultCharset())));
String url = HttpUtil.encodeParams(String.format("/token/login?error=%s", exception.getMessage()), Charset.defaultCharset());
WebUtils.getResponse().sendRedirect(url);
}
}