AopAlliance(Guice):从拦截的方法中调用另一个方法

|| 在使用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
     }
}
如果需要,我将乐意提供更多详细信息。     
已邀请:
怎么样
((MyClass)invocation.getThis()).invokeMe()
http://aopalliance.sourceforge.net/doc/org/aopalliance/intercept/MethodInvocation.html     

要回复问题请先登录注册