1
RexterClientを使用してJavaのTitan-gremlinグラフにアクセスしています。 しかし、私は、実行中のbelowwエラーました:以下Titan、RexterClient:com.tinkerpop.rexster.client.RexsterClient.execute(RexsterClient.java:185)のtimeoutConnection(8000s)を受信しました。
Message received response timeoutConnection (8000 s)
at com.tinkerpop.rexster.client.RexsterClient.execute(RexsterClient.java:185)
は私のポンポンです:
<dependency>
<groupId>com.tinkerpop.rexster</groupId>
<artifactId>rexster-protocol</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-all</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-core</artifactId>
<version>1.0.0</version>
</dependency>
君たちがどんな考えを持っている場合あなたは、いくつかの依存関係の不一致を持っているか
ありがとう、ジェイソン、これらの点を試してみます – Ahi