fanli/src/main/java/com/yeshi/fanli/aspect/ActiveUserAspect.java
@@ -21,9 +21,9 @@ * @author Administrator * */ //@Component //@Aspect //@Order(6) @Component @Aspect @Order(6) public class ActiveUserAspect { @Resource(name = "taskExecutor") @@ -38,7 +38,7 @@ public static final String EDP = "execution(* com.yeshi.fanli.controller.client.*.*(..))"; // @Around(EDP) @Around(EDP) public Object activeAround(ProceedingJoinPoint joinPoint) throws Throwable { Long uid = null; @@ -85,8 +85,7 @@ } }); Object[] args = joinPoint.getArgs(); return joinPoint.proceed(args); return joinPoint.proceed(joinPoint.getArgs()); } }