在使用AopAlliance进行方法拦截时,是否有办法从被拦截方法的类中调用方法?
例如:
public class MyClass {
public void interceptMe() {}
public void invokeMe() {}
}
和
public class MyInterceptor implements MethodInterceptor {
public Object invoke(MethodInvocation invocation) throws Throwable {
// This is where MyClass.interceptMe() is intercepted
// I would like to call MyClass.invokeMe() for the instance of the class who's method was intercepted
}
}
如果需要,我很乐意提供更多详细信息。
答案 0 :(得分:2)
怎么样
((MyClass)invocation.getThis()).invokeMe()
http://aopalliance.sourceforge.net/doc/org/aopalliance/intercept/MethodInvocation.html