Exemplo n.º 1
0
 /** 关闭连接池 */
 public static synchronized void shutdown() {
   logger.warn("shutdown httpClient connection pool.");
   if (client != null) {
     client.getConnectionManager().shutdown();
     IdleConnectionReaper.shutdown();
     DnsResolverHolder.shutdown();
     client = null;
   }
 }