2017-04-24 67 views
1

我正在使用RexterClient訪問java中的Titan-gremlin圖。 但我上運行的beloww錯誤:Titan,RexterClient:在com.tinkerpop.rexster.client.RexsterClient.execute上收到響應timeoutConnection(8000秒)的消息

Message received response timeoutConnection (8000 s) 
    at com.tinkerpop.rexster.client.RexsterClient.execute(RexsterClient.java:185) 

下面是我的POM:

<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> 

如果你們有什麼想法,請告訴我如何解決

回答

1

您有一定的相關性不匹配那裏。

  • Rexster來自TinkerPop 2.您可以分辨出軟件包名稱是以com.tinkerop開頭。
  • 泰坦1.0使用Apache TinkerPop 3.0.1。你可以知道,因爲包名以org.apache.tinkerpop開頭。這不是與TinkerPop有關2. enter image description here

一些指針兼容你應該看看:

+0

謝謝賈森,將嘗試這些要點 – Ahi