我正在使用 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?