我的目标: 我希望能够在拦截器或球衣过滤器中捕获客户端AbortExeptions的异常。
我如何使用context.proceed()来捕获拦截器内部的clientAbort异常?
@Provider 公共类RequestClientWriterInterceptor实现WriterInterceptor {
@Override
public void aroundWriteTo(WriterInterceptorContext context)
throws IOException, WebApplicationException {
context.getOutputStream()
.write(("Message added in the writer interceptor in the client
side").getBytes());
context.proceed();
}
}