Commit c846b918 authored by yanzg's avatar yanzg

接口文档的支持

parent 85a26349
...@@ -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()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment