我想在Java-SE应用程序中使用拦截器,我使用焊接作为CDI实现,我在这里测试:
主要班级:
public static void main(String[] args) {
WeldContainer weldContainer = new Weld().initialize();
Service service = weldContainer.instance().select(Service.class).get();
service.methodCall();
service.methodCallNumberTwo();
}
服务级别:
public class Service {
@TestAnnotation
public void methodCall(){
System.out.println("methodCall...!");
methodCallNumberTwo();
}
@TestAnnotation
public void methodCallNumberTwo(){
System.out.println("methodCallNumberTwo...!");
}
}
拦截器类:
@Interceptor
@TestAnnotation
public class TestInterceptor {
@AroundInvoke
public Object interceptorMethod(InvocationContext invocationContext) throws Exception {
System.out.println("I'm the TestInterceptor of "+invocationContext.getMethod());
return invocationContext.proceed();
}
}
Aaaand输出:
I'm the TestInterceptor of public void Service.methodCall()
methodCall...!
methodCallNumberTwo...!
I'm the TestInterceptor of public void Service.methodCallNumberTwo()
methodCallNumberTwo...!
我的问题
首先:当我调用methodCallNumberTwo()时,为什么不在methodCall()中调用拦截器?
第二:有没有办法改变它?
我只是研究拦截器的行为并且想要理解。提前谢谢!
答案 0 :(得分:4)
不会调用拦截器,因为您在对象的同一实例上调用它。如果您熟悉EJB,则与在同一对象上调用方法而不是通过EJB上下文相同。
如果通过它进行调试,则会注意到对注入对象的方法调用是通过代理进行的。从methodOne到methodTwo的方法调用未被代理。