我正在创建一个 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
可以从代理读取的参数?