Альтернативы для ClientExecutor и ProxyFactory
Этот код идеально подходит для RESTEasy. С устареванием ProxyFactory и ClientExecutor мне нужны опции.
PoolingClientConnectionManager connectionManager = new PoolingClientConnectionManager();
DefaultHttpClient httpClient = new DefaultHttpClient(connectionManager);
ClientExecutor clientExecutor = new ApacheHttpClient4Executor(httpClient);
MyClass client = ProxyFactory.create(MyClass.class, "http://localhost", clientExecutor);