InetSocketTransportAddress

InetSocketTransportAddress

我的代码在elasticsearch 5中工作正常,但是当我从5升级到6时。它显示

org.elasticsearch.common.transport.InetSocketTransportAddress not found

完整的堆栈跟踪:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project elastic-store: Compilation failure
[ERROR] /home/elastic/elastic-store/src/main/java/com/qw/psence/store/es/common/ESClient.java:[12,42] cannot find symbol
[ERROR] symbol:   class InetSocketTransportAddress
[ERROR] location: package org.elasticsearch.common.transport
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]

谁能帮我解决这个问题?

注意:Elaticsearch jar很好。

最佳答案

Elastic search 6.0删除了 InetSocketTransportAddress 类。我已经通过用 TransportAddress 类替换 InetSocketTransportAddress 类解决了此问题。

// on startup

TransportClient client = new PreBuiltTransportClient(Settings.EMPTY)
        .addTransportAddress(new TransportAddress(InetAddress.getByName("host1"), 9300))
        .addTransportAddress(new TransportAddress(InetAddress.getByName("host2"), 9300));

// on shutdown

client.close();

07-27 17:12