假设我定义了这种形式的切入点
* *.*(..)
和我想定义一个around通知,我怎么能调用任意数量的参数proceed ?
我想使用反射和thisJoinPoint.getArgs(),但在尝试之前,我想知道是否有一个干净简单的方法。
认为proceed
与匹配模式的方法使用相同的参数是一个常见的误解。然而,proceed
接受建议规定的参数。
的例子:
class C {
public void foo(int i, int j, char c) {
System.out.println("T.foo() " + i*j + " " + c);
}
}
class Context {
public int bar = 7;
public void doStuff() {
C c = new C();
c.foo(2, 3, 'x');
}
}
与一个方面:
public aspect MyAspect {
pointcut AnyCall() :
call(* *.*(..)) && !within(MyAspect);
void around(Context c) : AnyCall() && this(c) {
if (c.bar > 5)
proceed(c); // based on "around(Context c)"
}
}