我有一个带有私有方法的CDI bean。我写了一个拦截器如下:
拦截者代码:
@Interceptor
@TimeMeasure
public class TimeWatcher implements Serializable {
@AroundInvoke
public Object logMethodEntry(InvocationContext ctx) throws Exception {
long t0 = System.nanoTime();
try {
return ctx.proceed();
} finally {
long dt = System.nanoTime() - t0;
System.out.println("Method execution time: " + ctx.getMethod().getName() + " - " + dt);
}
}
}
注释代码:
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@InterceptorBinding
@Target({TYPE, METHOD})
@Retention(RUNTIME)
public @interface TimeMeasure {
}
只有外部调用的公共方法才能正常工作,如果我从CDI bean中调用方法它不起作用。我使用JSF 2.0 MyFaces和Omnifaces来完成@ViewScoped
提前谢谢。
答案 0 :(得分:7)
这是设计的。内部电话永远不会被截获。