我的建议方法接受对象参数Foo
,但切入点方法也接受对象参数Bar
。
在切入点方法中,有两个变量是Foo对象的一部分,需要传递给advice方法。
我该如何实现?提前谢谢。
切入点法:
aPointCutMethod(Bar bar){
// These two params needed to be used to construct Foo object and pass it to the advice method
String attr1;
String attr2;
}
Foo对象:
Class Foo {
String attr1;
String attr2;
}
建议方法:
anAdviceMethod(Foo foo);