Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
customer-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QG
customer-service
Commits
abe54262
Commit
abe54262
authored
Nov 06, 2019
by
xiaozhe.chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加修改手机号后台管理接口
parent
196572b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
CsrfHeaderFilter.java
...oup/customer/config/http/mvc/filter/CsrfHeaderFilter.java
+4
-5
No files found.
src/main/java/cn/quantgroup/customer/config/http/mvc/filter/CsrfHeaderFilter.java
View file @
abe54262
...
...
@@ -14,14 +14,13 @@ import java.io.IOException;
public
class
CsrfHeaderFilter
extends
OncePerRequestFilter
{
@Override
protected
void
doFilterInternal
(
HttpServletRequest
request
,
HttpServletResponse
response
,
FilterChain
filterChain
)
throws
ServletException
,
IOException
{
CsrfToken
csrf
=
(
CsrfToken
)
request
.
getAttribute
(
CsrfToken
.
class
.
getName
());
HttpServletResponse
response
,
FilterChain
filterChain
)
throws
ServletException
,
IOException
{
CsrfToken
csrf
=
(
CsrfToken
)
request
.
getAttribute
(
CsrfToken
.
class
.
getName
());
if
(
csrf
!=
null
)
{
Cookie
cookie
=
WebUtils
.
getCookie
(
request
,
"XSRF-TOKEN"
);
String
token
=
csrf
.
getToken
();
if
(
cookie
==
null
||
token
!=
null
&&
!
token
.
equals
(
cookie
.
getValue
()))
{
boolean
existed
=
cookie
==
null
||
token
!=
null
&&
!
token
.
equals
(
cookie
.
getValue
());
if
(
existed
)
{
cookie
=
new
Cookie
(
"XSRF-TOKEN"
,
token
);
cookie
.
setPath
(
"/"
);
response
.
addCookie
(
cookie
);
...
...
Write
Preview
Markdown
is supported
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