在带有参数的注释之前未调用方面
Aspect not invoken before annotation with arguments
我对 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 中。
基本的解决方法是绑定注解:
@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() 切入点仅用于 select 方法(因此我们需要带注释的方法),否则它将绑定注释的其他用户(在 fields/types/etc 上)。有人指出,args是绑定方法参数,而不是注解。
我对 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 中。
基本的解决方法是绑定注解:
@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() 切入点仅用于 select 方法(因此我们需要带注释的方法),否则它将绑定注释的其他用户(在 fields/types/etc 上)。有人指出,args是绑定方法参数,而不是注解。