无法用Java导入泽西

时间:2016-11-06 14:30:26

标签: java web-services jersey

我尝试使用Restful来演示Web服务。

我不知道为什么。我无法进口球衣。

我在Netbeans中添加了泽西图书馆。 This is my error

This is link tutorials

1 个答案:

答案 0 :(得分:2)

这是因为您正在使用Jersey 2库,并且您正在尝试导入Jersey 1类。您可以看到用于Jersey 2的javax.ws.rs.client.Client is imported correctly. This is the Client`您可以像

一样使用它
Client client = ClientBuilder.newClient();
WebTarget target = client.target(url);
Response response = target.request().get();

另见: