如何使用 java 在 aws neptune 中以编程方式创建顶点

How to programmatically create a vertex in aws neptune using java

我 运行 以下 java 代码(对此处发布的示例进行了非常小的修改 https://docs.aws.amazon.com/neptune/latest/userguide/access-graph-gremlin-java.html)并得到空指针异常。我看到顶点是在 Neptune 中创建的,但驱动程序似乎对响应进行了轰炸。

我是不是做错了什么?有没有人成功地使用 Java.

在 Neptune 中以编程方式创建顶点
public class NeptuneMain {
  public static void main(String[] args) {
  Cluster.Builder builder = Cluster.build();
  builder.addContactPoint("<enter cluster url here>");
  builder.port(8182);

  Cluster cluster = builder.create();
  GraphTraversalSource g = EmptyGraph.instance().traversal().withRemote(DriverRemoteConnection.using(cluster));
  GraphTraversal t = g.addV("Aspect");
  t.forEachRemaining(
        e ->  System.out.println(e)
  );
  cluster.close();
}
}

堆栈跟踪是:

Exception in thread "main" java.util.concurrent.CompletionException: java.lang.NullPointerException
    at java.util.concurrent.CompletableFuture.reportJoin(CompletableFuture.java:375)
    at java.util.concurrent.CompletableFuture.join(CompletableFuture.java:1934)
    at org.apache.tinkerpop.gremlin.driver.ResultSet.one(ResultSet.java:107)
    at org.apache.tinkerpop.gremlin.driver.ResultSet.hasNext(ResultSet.java:159)
    at org.apache.tinkerpop.gremlin.driver.ResultSet.next(ResultSet.java:166)
    at org.apache.tinkerpop.gremlin.driver.ResultSet.next(ResultSet.java:153)
    at org.apache.tinkerpop.gremlin.driver.remote.DriverRemoteTraversal$TraverserIterator.next(DriverRemoteTraversal.java:142)
    at 

您可能正在使用旧版本 (3.2.x) 的 gremlin 驱动程序包。尝试升级到 >= 3.3.2,如果您仍然发现这个问题,请告诉我们。