【发布时间】:2015-09-04 16:15:07
【问题描述】:
我正在用 java 做一些测试示例,我想出了一个使用 @AroundInvoke 的示例。问题是我不知道调用的方法到底在哪里。
这个测试在它调用 post() 方法的地方进行了调用,但我真的不知道它是如何工作的 (Using Interceptors explanation)。
@Test
public void crudtest() {
JsonObjectBuilder todoBuilder = Json.createObjectBuilder();
JsonObject todoToCreate = todoBuilder.
add("caption", "implement").
add("priority", 10).
build();
//The next post execute, invoke the method
Response postResponse = this.provider.target().request().
post(Entity.json(todoToCreate));
}
调用顺序是BoundaryLogger,然后是MonitorSink
BoundaryLogger.java
...
public class BoundaryLogger {
@Inject
Event<CallEvent> monitoring;
@AroundInvoke
public Object logCall(InvocationContext ic) throws Exception {
long start = System.currentTimeMillis();
try {
return ic.proceed();
} finally {
long duration = System.currentTimeMillis() - start;
monitoring.fire(new CallEvent(ic.getMethod().getName(), duration));
}
}
}
MonitorSink
@Singleton
@ConcurrencyManagement(ConcurrencyManagementType.BEAN)
public class MonitorSink {
@Inject
LogSink LOG;
public void onCallEvent(@Observes CallEvent event){
LOG.log(event.toString());
}
}
【问题讨论】: