我正在尝试使用 Jest Client 进行弹性搜索的 REST 调用。我收到以下错误JestClient client = factory.getObject();
:
JestTest.main(JestTest.爪哇:22)
以下是代码:
JestClientFactory factory = new JestClientFactory();
factory.setHttpClientConfig(new HttpClientConfig
.Builder("http://localhost:9200")
.multiThreaded(true)
.build());
JestClient client = factory.getObject();
如何修复此错误?