我对 AspectJ 有问题。我在注释中添加了参数,在该注释之前将编织 Aspect,因此它不起作用。注释接口:@Target({ElementType.METHOD})@Retention(RetentionPolicy.RUNTIME)public @interface Logged { Event event(); System system();}我的方面:@Aspect@Componentpublic 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@Componentpublic class Aspect { @Pointcut("@annotation(Logged)") public void invoke() { } @Around("invoke()") public void aspectMethod (ProceedingJoinPoint) { System.out.println("Hey"); }}我不知道如何通过注释将参数传递给 Aspect。
1 回答
慕姐8265434
TA贡献1813条经验 获得超2个赞
基本的解决办法是绑定注解:
@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 用于绑定方法参数,而不是注解。
添加回答
举报
0/150
提交
取消