我在一个项目中使用Elasticsearch,我的客户端位于localhost:9200,但当我在开发环境中使用时,我的Elasticsearch客户端位于https://elasticsearch.eu:443/v1/elastic用途:RestClient restClient =RestClient.builder(new HttpHost(Host,port)).build().既然我们有一个额外的路径,那么设置第二个URL的主机和端口的正确方法是什么?
我在一个项目中使用Elasticsearch,我的客户端位于localhost:9200,但当我在开发环境中使用时,我的Elasticsearch客户端位于https://elasticsearch.eu:443/v1/elastic用途:RestClient restClient =RestClient.builder(new HttpHost(Host,port)).build().既然我们有一个额外的路径,那么设置第二个URL的主机和端口的正确方法是什么?
1条答案
按热度按时间yacmzcpb1#
在版本7.17中,根据Java Low Level REST Client - Initialization