Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
PRMS
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
zhengfunan
PRMS
Commits
2983040d
Commit
2983040d
authored
Jun 24, 2021
by
shaochangbin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
在token认证前将所有请求都设为可访问true返回继续访问
parent
d30950a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
TokenInterceptor.java
...java/com/yingxin/prms/config/filter/TokenInterceptor.java
+5
-0
No files found.
src/main/java/com/yingxin/prms/config/filter/TokenInterceptor.java
View file @
2983040d
...
...
@@ -57,6 +57,11 @@ public class TokenInterceptor implements HandlerInterceptor {
response
.
setStatus
(
HttpServletResponse
.
SC_OK
);
return
true
;
}
//token判断永真,不会到后面的token认证
if
(
true
){
return
true
;
}
if
(
path
.
matches
(
"/rest/(.*)"
)){
response
.
setCharacterEncoding
(
"utf-8"
);
String
token
=
request
.
getHeader
(
"token"
);
...
...
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