Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
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
YZG
yzg-util
Commits
c846b918
Commit
c846b918
authored
Apr 07, 2020
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口文档的支持
parent
85a26349
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
WebAspect.java
...ud/src/main/java/com/yanzuoguang/cloud/aop/WebAspect.java
+13
-2
No files found.
yzg-util-cloud/src/main/java/com/yanzuoguang/cloud/aop/WebAspect.java
View file @
c846b918
...
@@ -3,6 +3,7 @@ package com.yanzuoguang.cloud.aop;
...
@@ -3,6 +3,7 @@ package com.yanzuoguang.cloud.aop;
import
com.yanzuoguang.cloud.service.TokenServiceCall
;
import
com.yanzuoguang.cloud.service.TokenServiceCall
;
import
com.yanzuoguang.token.TokenHelper
;
import
com.yanzuoguang.token.TokenHelper
;
import
com.yanzuoguang.util.exception.ExceptionHelper
;
import
com.yanzuoguang.util.exception.ExceptionHelper
;
import
com.yanzuoguang.util.log.Log
;
import
com.yanzuoguang.util.vo.ResponseResult
;
import
com.yanzuoguang.util.vo.ResponseResult
;
import
org.aspectj.lang.ProceedingJoinPoint
;
import
org.aspectj.lang.ProceedingJoinPoint
;
import
org.aspectj.lang.Signature
;
import
org.aspectj.lang.Signature
;
...
@@ -76,8 +77,18 @@ public class WebAspect extends BaseRequestAspect {
...
@@ -76,8 +77,18 @@ public class WebAspect extends BaseRequestAspect {
boolean
isInit
=
false
;
boolean
isInit
=
false
;
try
{
try
{
isInit
=
tokenServiceCall
.
tokenInit
();
isInit
=
tokenServiceCall
.
tokenInit
();
if
(
webAssecptInit
==
null
&&
context
.
containsBean
(
"webAssecptInit"
))
{
if
(
webAssecptInit
==
null
)
{
try
{
webAssecptInit
=
context
.
getBean
(
WebAssecptInit
.
class
);
webAssecptInit
=
context
.
getBean
(
WebAssecptInit
.
class
);
}
catch
(
Exception
e
)
{
webAssecptInit
=
new
WebAssecptInit
()
{
@Override
public
void
init
(
Object
req
)
{
}
};
Log
.
error
(
WebAspect
.
class
,
"请设置登录默认处理函数"
);
Log
.
error
(
WebAspect
.
class
,
e
);
}
}
}
if
(
webAssecptInit
!=
null
)
{
if
(
webAssecptInit
!=
null
)
{
for
(
Object
arg
:
joinPoint
.
getArgs
())
{
for
(
Object
arg
:
joinPoint
.
getArgs
())
{
...
...
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