0
我正在嘗試使用Jersey客戶端,如2.2.9 Neo4j手冊的7.1章節中所述。這裏是我的Maven依賴如何使用Maven將Jersey客戶端集成到我的servlet代碼中
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<!-- if your container implements Servlet API older than 3.0, use "jersey-container-servlet-core" -->
<artifactId>jersey-container-servlet</artifactId>
<version>2.22.2</version>
</dependency>
<!-- Required only when you are using JAX-RS Client -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.22.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>2.22.2</version>
</dependency>
在我的代碼,我輸入這樣的:
import org.glassfish.jersey.api.client.*;
但是當我編譯特定澤西類客戶端,ClientResponse和WebResource都沒有發現。
我已經嘗試過各種依賴和導入,似乎沒有任何工作。
截至2016年4月,正確的方式是什麼?
由於