在使用 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
}
}
如果需要,我很乐意提供更多详细信息。