我正在使用Jest版本0.1.6来处理来自AWS Elastic Search集群的请求(版本1.5)。似乎Jest默认使用HTTP,但是我在最新版本的Jest中看到你可以通过以下方式启用HTTPS:
JestClientFactory factory = new JestClientFactory();
factory.setHttpClientConfig(new HttpClientConfig.Builder("https://localhost:9200")
.defaultSchemeForDiscoveredNodes("https").build();
然而,在Jest 0.1.6中似乎没有。有没有办法在早期版本的Jest中使用HTTPS?