mirror of https://gitee.com/maxjhandsome/pig
🐛 fix a bug #I1H24Z 统一登录错误信息乱码
This commit is contained in:
parent
7dc9dc01bc
commit
3162c7325c
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue