我正在创建一个Apache CXF JAX-RS客户端并添加一个inInterceptor
MyProxy proxy = JAXRSClientFactory.create("http://path.to.url", MyProxy.class);
ClientConfiguration config = WebClient.getConfig(service);
config.getInInterceptors().add(new RemoveAlertsInterceptor());
如何在RemoveAlertsInterceptor
中设置参数,我可以从代理中读取?