diff --git a/mall-portal/src/main/java/com/macro/mall/portal/component/GoAccessDeniedHandler.java b/mall-portal/src/main/java/com/macro/mall/portal/component/GoAccessDeniedHandler.java index 6b17a68..103eab9 100644 --- a/mall-portal/src/main/java/com/macro/mall/portal/component/GoAccessDeniedHandler.java +++ b/mall-portal/src/main/java/com/macro/mall/portal/component/GoAccessDeniedHandler.java @@ -17,7 +17,7 @@ public class GoAccessDeniedHandler implements AccessDeniedHandler{ @Override public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException) throws IOException, ServletException { response.setHeader("Content-Type", "application/json;charset=utf-8"); - response.getWriter().print(JSONUtil.parse(CommonResult.unauthorized(accessDeniedException.getMessage()))); + response.getWriter().print(JSONUtil.parse(CommonResult.forbidden(accessDeniedException.getMessage()))); response.getWriter().flush(); } } diff --git a/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationEntryPoint.java b/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationEntryPoint.java index bf3ab76..7da2442 100644 --- a/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationEntryPoint.java +++ b/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationEntryPoint.java @@ -17,7 +17,7 @@ public class GoAuthenticationEntryPoint implements AuthenticationEntryPoint { @Override public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException { response.setHeader("Content-Type", "application/json;charset=utf-8"); - response.getWriter().print(JSONUtil.parse(CommonResult.forbidden(authException.getMessage()))); + response.getWriter().print(JSONUtil.parse(CommonResult.unauthorized(authException.getMessage()))); response.getWriter().flush(); } } diff --git a/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationFailureHandler.java b/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationFailureHandler.java index fddbe63..2f338e8 100644 --- a/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationFailureHandler.java +++ b/mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationFailureHandler.java @@ -17,7 +17,7 @@ public class GoAuthenticationFailureHandler implements AuthenticationFailureHand @Override public void onAuthenticationFailure(HttpServletRequest request, HttpServletResponse response, AuthenticationException exception) throws IOException, ServletException { response.setHeader("Content-Type", "application/json;charset=utf-8"); - response.getWriter().print(JSONUtil.parse(CommonResult.failed("登录失败:"+exception.getMessage()))); + response.getWriter().print(JSONUtil.parse(CommonResult.failed("登录失败,用户名或密码错误!"))); response.getWriter().flush(); } }