Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
xiaolang
/
expert
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d8384f37
authored
Jun 09, 2020
by
xiaolang850403
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日常提交
parent
44e3a8d0
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
1 deletions
+5
-1
pom.xml
+0
-1
src/main/java/com/asset/controller/LoginController.java
+0
-0
src/main/java/com/asset/controller/UserController.java
+5
-0
src/main/java/com/asset/core/filter/TokenInterceptor.java
+0
-0
src/main/java/com/asset/core/jwt/JWTConfiguration.java
+0
-0
src/main/java/com/asset/core/jwt/TokenUtil.java
+0
-0
No files found.
pom.xml
View file @
d8384f37
...
...
@@ -132,7 +132,6 @@
<artifactId>
java-jwt
</artifactId>
<version>
3.8.3
</version>
</dependency>
</dependencies>
<build>
...
...
src/main/java/com/asset/controller/LoginController.java
View file @
d8384f37
src/main/java/com/asset/controller/UserController.java
View file @
d8384f37
...
...
@@ -51,6 +51,11 @@ public class UserController {
@Value
(
"${refexpire}"
)
private
String
refexpire
;
@GetMapping
(
"/hello"
)
public
String
hello
()
{
return
"login"
;
}
@RequestMapping
(
"/register"
)
public
Result
register
(
@Validated
(
value
={
Insert
.
class
})
@RequestBody
User
user
,
BindingResult
result
)
throws
UnsupportedEncodingException
{
if
(
result
.
hasErrors
())
{
...
...
src/main/java/com/asset/core/filter/TokenInterceptor.java
View file @
d8384f37
src/main/java/com/asset/core/jwt/JWTConfiguration.java
View file @
d8384f37
src/main/java/com/asset/core/jwt/TokenUtil.java
View file @
d8384f37
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