2
在Guice中,有沒有一種方法可以調用我的MethodInterceptor::invoke
執行攔截的方法被執行(而不是之前)?Guice post執行方法攔截
我已經添加了當前的代碼我AbstractModule
:
bindInterceptor(Matchers.subclassesOf(InterceptedClass.class), Matchers.annotatedWith(MyMethodAnnotation.class), new MyMethodInterceptor());
謝謝Jan,它的工作原理! – Shirile