我正在为每个这样的客户端的拦截器链添加CXF拦截器
Client client = ClientProxy.getClient(port);
Endpoint endpoint = client.getEndpoint();
endpoint.getOutInterceptors().add(new MyInterceptor(Phase.SEND));
port
是客户端使用的服务端口。
是否可以使用一个命令为服务器中所有客户端的拦截器链添加MyInterceptor
拦截器?