web-dev-qa-db-fra.com

httpClient.getConnectionManager () est obsolète - que faut-il utiliser à la place?

J'ai hérité du code

import org.Apache.http.client.HttpClient;
...
HttpClient httpclient = createHttpClientOrProxy();

    try {
        HttpPost postRequest = postRequest(data, url);
        body = readResponseIntoBody(body, httpclient, postRequest);
    } catch( IOException ioe ) {
        throw new RuntimeException("Cannot post/read", ioe);
    } finally {
        httpclient.getConnectionManager().shutdown();  // ** Deprecated
    }


private HttpClient createHttpClientOrProxy() {
    HttpClient httpclient = new DefaultHttpClient();

    /*
     * Set an HTTP proxy if it is specified in system properties.
     * 
     * http://docs.Oracle.com/javase/6/docs/technotes/guides/net/proxies.html
     * http://hc.Apache.org/httpcomponents-client-ga/httpclient/examples/org/Apache/http/examples/client/ClientExecuteProxy.Java
     */
    if( isSet(System.getProperty("http.proxyHost")) ) {
        log.warn("http.proxyHost = " + System.getProperty("http.proxyHost") );
        log.warn("http.proxyPort = " + System.getProperty("http.proxyPort"));
        int port = 80;
        if( isSet(System.getProperty("http.proxyPort")) ) {
            port = Integer.parseInt(System.getProperty("http.proxyPort"));
        }
        HttpHost proxy = new HttpHost(System.getProperty("http.proxyHost"), port, "http");
// @Deprecated methods here... getParams() and ConnRoutePNames
        httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);
    }
    return httpclient;
}

getConnectionManager() lit "

@Deprecated
ClientConnectionManager getConnectionManager()

Deprecated. (4.3) use HttpClientBuilder.
Obtains the connection manager used by this client.

Les documents pour HttpClientBuilder semblent clairsemés et disent simplement:

Builder for CloseableHttpClient instances.

Cependant, si je remplace HttpClient par CloseableHttpClient, la méthode semble toujours @Deprecated.

Comment puis-je utiliser une méthode non obsolète?

25
peter.murray.rust

Au lieu de créer une nouvelle instance de HttpClient, utilisez le générateur. Vous obtiendrez un CloseableHttpClient.

par exemple utilisation:

CloseableHttpClient httpClient = HttpClientBuilder.create().setProxy(proxy).build()

Au lieu d'utiliser getConnectionManager (). Shutdown (), utilisez plutôt la méthode close () sur CloseableHttpClient.

36
SiN