Я создаю CloseableHttpClient с намерением подключиться к нашему Tomcat для выполнения некоторых служб. После запроса я вызываю close на клиенте, но я все еще вижу, что там есть активный сеанс в Tomcat. Не следует ли закрывать аннулировать сеанс?
RequestConfig requestConfig = RequestConfig.custom()
.setSocketTimeout(1000 * 60 * 2)
.setConnectTimeout(4000)
.build();
HttpClientBuilder cl = HttpClients.custom();
cl.setDefaultRequestConfig(requestConfig);
cl.setSSLSocketFactory(makeSSLConnectionSocketFactory());
HttpGet postMethod = new HttpGet(url);
try (CloseableHttpClient client = cl.build();
CloseableHttpResponse httpResponse = client.execute(postMethod);) {
} catch (IOException e) {
//e.printStackTrace();
}