Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
mall
Commits
dafb4ce7
Commit
dafb4ce7
authored
Oct 07, 2019
by
macro
Browse files
portal 登录码问题修复
parent
afcdcd00
Changes
3
Hide whitespace changes
Inline
Side-by-side
mall-portal/src/main/java/com/macro/mall/portal/component/GoAccessDeniedHandler.java
View file @
dafb4ce7
...
...
@@ -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
();
}
}
mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationEntryPoint.java
View file @
dafb4ce7
...
...
@@ -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
();
}
}
mall-portal/src/main/java/com/macro/mall/portal/component/GoAuthenticationFailureHandler.java
View file @
dafb4ce7
...
...
@@ -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
();
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment