httpcomponent, httpclient proxy setting
http://www.jianshu.com/p/f38a62efaa96
HttpHost proxy = new HttpHost("localhost",8888);
CloseableHttpClient httpclient = HttpClients.custom()
.setDefaultRequestConfig(RequestConfig.custom()
.setProxy(proxy).build()).build();