4

我正在尝试从正常工作的 REST 网络服务中获得响应。

我在查看文档时提出了以下内容:

void postRest()
{
    Client client = ClientBuilder.newClient();
    WebTarget webTarget = client.target("http://localhost:8080/TestApplication/");
    WebTarget resourceWebTarget = webTarget.path("webresources");
    WebTarget peopleWebTarget = resourceWebTarget.path("people/get/all");

    Invocation invocation = peopleWebTarget.request("text/xml").header("Content-Type", "application/xml").buildGet();
    String response = invocation.invoke(String.class);

    System.out.println(response);
}

但是我返回了一个不太友好的:

Exception in thread "main" java.lang.NoSuchMethodError: org.glassfish.jersey.message.internal.MessagingBinders$MessageBodyProviders.<init>(Ljava/util/Map;Ljavax/ws/rs/RuntimeType;)V
    at org.glassfish.jersey.client.ClientBinder.configure(ClientBinder.java:118)
    at org.glassfish.hk2.utilities.binding.AbstractBinder.bind(AbstractBinder.java:169)
    at org.glassfish.jersey.internal.inject.Injections.bind(Injections.java:157)
    at org.glassfish.jersey.internal.inject.Injections._createLocator(Injections.java:147)
    at org.glassfish.jersey.internal.inject.Injections.createLocator(Injections.java:137)
    at org.glassfish.jersey.client.ClientConfig$State.initRuntime(ClientConfig.java:352)
    at org.glassfish.jersey.client.ClientConfig$State.access$000(ClientConfig.java:85)
    at org.glassfish.jersey.client.ClientConfig$State$3.get(ClientConfig.java:117)
    at org.glassfish.jersey.client.ClientConfig$State$3.get(ClientConfig.java:114)
    at org.glassfish.jersey.internal.util.collection.Values$LazyValue.get(Values.java:275)
    at org.glassfish.jersey.client.ClientConfig.getRuntime(ClientConfig.java:669)
    at org.glassfish.jersey.client.ClientRequest.getConfiguration(ClientRequest.java:276)
    at org.glassfish.jersey.client.JerseyInvocation.validateHttpMethodAndEntity(JerseyInvocation.java:124)
    at org.glassfish.jersey.client.JerseyInvocation.<init>(JerseyInvocation.java:97)
    at org.glassfish.jersey.client.JerseyInvocation.<init>(JerseyInvocation.java:90)
    at org.glassfish.jersey.client.JerseyInvocation$Builder.buildGet(JerseyInvocation.java:201)
    at org.glassfish.jersey.client.JerseyInvocation$Builder.buildGet(JerseyInvocation.java:154)
    at client.RestClient.postRest(RestClient.java:24)
    at client.RestClient.main(RestClient.java:14)
Java Result: 1

我正在使用 NetBeans 并且没有添加任何库,因为 GlassFish Server 似乎带有 javax.ws.rs-api.jar ,它使上述运行。

我是否需要在库中添加 Jersey.jar 或者我错过了什么?谢谢

4

2 回答 2

0

我在尝试在 Eclipse 中运行上述代码时遇到了这个问题。

1)第一个问题是org.jboss.resteasy.jaxrs-api包含在内,它解决了编译问题但没有解决运行时问题,给出了上面提到的异常。这个问题的解决方案就是简单地包含org.jboss.resteasy.rest-client在你的 pom.xml 中。

2)第二个问题是我开始遇到java.lang.NoSuchMethodError: org.jboss.resteasy.spi.ResteasyProviderFactory.<init>(Lorg/jboss/resteasy/spi/ResteasyProviderFactory;)V异常。问题是在 Eclipse 中我在服务器中定义了 jBoss EAP 6.3 版,即使项目没有使用它,jar 仍然包含在类路径中,导致运行时发生冲突。

然后解决方案是打开一个新的工作空间或没有定义 jBoss EAP 服务器的新 Eclipse 副本,或者更新当前 jBoss EAP 6.3 服务器中的 resteasy 模块。这是该线程中的最终建议:RESTEasy Client + NoSuchMethodError。对我来说很有意义,因为无论如何我宁愿我的休息服务器在当前的 jar 下运行。

于 2014-10-31T21:52:13.680 回答
0

似乎 Jersey 开发人员非常以 maven 为中心,不鼓励手动包含 jar,因此,如果您不使用 maven,而是在 NetBeans 中包含 jar,则需要添加 jaxrs-ri 的全部内容,包括 ext/ 目录中的 jar上面的代码运行。

附带说明一下,如果您在同一个项目中使用球衣的客户端和服务器端,则手动包含 jar 可能会破坏服务器端,因此最好将它们分开!

于 2013-11-11T17:02:56.767 回答