在使用参数进行注释之前未调用方面

时间:2018-07-25 07:48:04

标签: java aspectj

我对AspectJ有问题。我在注解之前添加了参数,在该注解之前将编织Aspect,因此它不起作用。

注释界面:

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Logged {
   Event event();
   System system();
}

我的长相:

@Aspect
@Component
public class Aspect {
    @Pointcut("@annotation(Logged) && args(event, system)")
    public void invoke(Event event, System system) { }

    @Around("invoke(event, system)")
    public void aspectMethod (ProceedingJoinPoint, Event event, System system) {
        System.out.println(event + " " + system);
    }
}

事件和系统是枚举。

并在诸如此类的方法之前添加了注释:

@Logged(event = Event.USER_LOGGED, system = System.WIN)
someTestingMethod();

仅当我将Aspect保留为:

@Aspect
@Component
public class Aspect {
    @Pointcut("@annotation(Logged)")
    public void invoke() { }

    @Around("invoke()")
    public void aspectMethod (ProceedingJoinPoint) {
        System.out.println("Hey");
    }
}

我不知道如何通过注释将参数传递给Aspect。

1 个答案:

答案 0 :(得分:1)

基本解决方案是绑定注释:

@Aspect
class MyAspect {
    @Pointcut("execution(* *(..)) && @annotation(l)")
    public void invoke(Logged l) {}

    @Around("invoke(l)")
    public void aspectMethod (ProceedingJoinPoint pjp, Logged l) {
        java.lang.System.out.println(l.event()+" "+l.system());
    }
}

我已使用execution()切入点仅选择方法(因此我们需要带注释的方法),否则它将绑定其他注释用户(在字段/类型/等位置)。有人指出,args用于绑定方法参数,而不是注释。