Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fangyeqing
/
xkl-interface
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
fangyeqing
2017-01-07 14:42:44 +0800
Commit
6d1efda325198d34b7c50f1aac044fce29b56ff0
1 parent
f95efdd2
FIX:fix bug without innerkey
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/xkl/authorization/aspect/SignAspect.java
src/main/java/com/xkl/authorization/aspect/SignAspect.java
View file @
6d1efda
...
...
@@ -45,7 +45,7 @@ public class SignAspect {
id
=
1
;
else
id
=
2
;
return
xklInterKeyRespository
.
findOne
(
id
).
getKey
();
return
(
xklInterKeyRespository
.
findOne
(
id
)
==
null
)?
""
:
xklInterKeyRespository
.
findOne
(
id
).
getKey
();
}
/**
* 定义切点,定位到@Sign注解的地方
...
...
Please
register
or
login
to post a comment