- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试编写简单的 RESTEasy 客户端。下面给出了示例代码:
Client client = ClientBuilder.newBuilder().build();
WebTarget target = client.target("http://localhost:8080/context/path");
Response response = target.request().post(Entity.entity(object, "application/json"));
//Read output in string format
String value = response.readEntity(String.class);
我在行中遇到异常:
Client client = ClientBuilder.newBuilder().build();
我在控制台中看到以下错误:
16:07:57,678 ERROR [stderr] (http-localhost/127.0.0.1:8080-1) java.lang.NoSuchMethodError: org.jboss.resteasy.spi.ResteasyProviderFactory.<init>(Lorg/jboss/resteasy/spi/ResteasyProviderFactory;)V
16:07:57,679 ERROR [stderr] (http-localhost/127.0.0.1:8080-1) at org.jboss.resteasy.client.jaxrs.internal.ClientConfiguration.<init>(ClientConfiguration.java:44)
16:07:57,680 ERROR [stderr] (http-localhost/127.0.0.1:8080-1) at org.jboss.resteasy.client.jaxrs.ResteasyClientBuilder.build(ResteasyClientBuilder.java:317)
16:07:57,680 ERROR [stderr] (http-localhost/127.0.0.1:8080-1) at org.jboss.resteasy.client.jaxrs.ResteasyClientBuilder.build(ResteasyClientBuilder.java:49)
我在 pom.xml 中添加了 resteasy 客户端依赖:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>3.0.8.Final</version>
</dependency>
我的代码部署在 JBOSS EAP 6.1 上。 JDK 版本为 1.7。
更新:我还尝试在我的 pom.xml 中添加 resteasy jax-rs 依赖项。我还通过在我的 web.xml 中添加以下行来验证是否启用了 ResteasyProviderFactory:
<listener>
<listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap</listener-class>
</listener>
请在下面找到 Maven 依赖项列表:
<dependencies>
<dependency>
<groupId>org.jboss.spec.javax.ejb</groupId>
<artifactId>jboss-ejb-api_3.1_spec</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.0.8.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>3.0.8.Final</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-servlet</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
但它不起作用。
除了异常(exception),我无法弄清楚缺少什么。我无法在 SO 或任何其他论坛上找到有关此问题的任何引用。如果您之前看到过此问题并且知道如何解决,请告诉我。谢谢。
2014 年 6 月 11 日更新:
引用后this blog通过排除一些 resteasy 和 jackson 模块,我尝试创建类似的 jboss-deployment-structure.xml 并将其保存在我的 EJB 项目的 META-INF 文件夹中。这解决了我的 NoSuchMethodError for "org.jboss.resteasy.spi.ResteasyProviderFactory.(Lorg/jboss/resteasy/spi/ResteasyProviderFactory;)"问题。我的 jboss-deployment-structure.xml 的结构是:
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<exclude-subsystems>
<subsystem name="resteasy"/>
</exclude-subsystems>
<exclusions>
<!-- <module name="org.apache.log4j" /> -->
<module name="org.apache.commons.logging"/>
<module name="org.jboss.as.jaxrs"/>
<module name="org.jboss.resteasy.resteasy-jaxrs"/>
<module name="org.jboss.resteasy.resteasy-cdi"/>
<!-- <module name="org.jboss.resteasy.jackson-provider"/>
<module name="org.jboss.resteasy.resteasy-atom-provider"/>
<module name="org.jboss.resteasy.resteasy-hibernatevalidator-provider"/>
<module name="org.jboss.resteasy.resteasy-jaxb-provider"/>
<module name="org.jboss.resteasy.resteasy-jettison-provider"/>
<module name="org.jboss.resteasy.resteasy-jsapi"/>
<module name="org.jboss.resteasy.resteasy-multipart-provider"/>
<module name="org.jboss.resteasy.resteasy-yaml-provider"/>
<module name="org.codehaus.jackson.jackson-core-asl"/>
<module name="org.codehaus.jackson.jackson-jaxrs"/>
<module name="org.codehaus.jackson.jackson-mapper-asl"/>
<module name="org.codehaus.jackson.jackson-xc"/>
<module name="org.codehaus.jettison"/>
<module name="javax.ws.rs.api"/> -->
</exclusions>
</deployment>
</jboss-deployment-structure>
但现在我看到其他方法有类似的异常:
Caused by: java.lang.NoSuchMethodError: javax.ws.rs.core.Response.readEntity(Ljava/lang/Class;)Ljava/lang/Object;
at com.example.data.DemoProxyBean.callDemoTx(DemoProxyBean.java:59) [demo-service.jar:]
at com.example.data.DemoProxyBean$Proxy$_$$_WeldClientProxy.callDemoTx(DemoProxyBean$Proxy$_$$_WeldClientProxy.java) [demo-service.jar:]
我在以下行看到了这个异常:
String value = response.readEntity(String.class);
奇怪的是,当我在调试时检查“response.readEntity(String.class)”时,我可以看到字符串值。但是当我尝试转到下一行时,我看到了这个错误。你能指导我吗,可能是什么问题?
进一步更新:
我提到了这个JBOSS Issue tracker .但它与 WildFly 有关,与 EAP 服务器无关。它要求我们排除模块“javaee-api”。我尝试排除“javaee-api”模块,但它也不起作用。
最佳答案
此问题是由于您的应用程序和 Jboss EAP 模块之间的 Resteasy Client 实现版本不同而引发的。您正在使用最新版本的 jaxrs-client,但 JBoss EAP 6.3.0 使用非常旧的版本 (resteasy-jaxrs-2.3.8.Final-redhat-3)。
只需下载最新的 JBoss Resteasy 实现包(像这样:resteasy-jboss-modules-3.0.9.Final.zip)并解压到 EAP Modules 文件夹中替换现有文件 modules.xml 并添加新的 jar。记住替换 ZIP 中的所有 JARS(不仅是 resteasy-jaxrs)。
关于java - RESTEasy 客户端 + NoSuchMethodError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24139097/
是否可以为所有意外错误创建全局异常处理程序。 因为不可能像这样制作所有可能的类: public class ExceptionHandler implements ExceptionMapper {.
我正在尝试同时运行 HTTPServer 和 REST 处理程序。一次只能工作一个,不能同时工作。我需要提供 html 页面和 api。 这是我的代码。 public class HttpSe
JBoss 告诉我们 http://docs.jboss.org/seam/3/rest/latest/reference/en-US/html/rest.client.html 要为 RestEAS
我们使用的是 Wildfly 10.1.0 和 Resteasy 3.1.1。在数百 rps 的吞吐量下,即使平均延迟非常低,我们也会看到随机的长请求。 我们正在查看 New Relic 在我们的应用
我有以下代码: var threadsWaiter = new CountDownLatch(customers.size()); for(var c: List customers) { se
考虑以下场景(使用 Rest easy 进行 Rest 实现): 客户端向我的 RestService 发送了请求。 我的休息服务更新了与请求相关的数据库。 最后我的休息服务发送了一些响应。 如果客户
我们在这里运行 RESTEasy 2.3.0.GA,我正在为 https://stackoverflow.com/questions/18219237/jax-rs-path-regex-fails-
我使用 JBoss (AS 7.1)、RestEasy 和 Jackson 开发 REST Api。 Web 服务返回一个“Account”对象,它是一个简单的 POJO,过去在 JSon 中序列化没
我需要使用 RESTEasy 设计 RESTful 服务。客户端可以使用任意数量的查询参数来调用此公共(public)服务。我的 REST 代码应该能够以某种方式读取这些查询参数。例如,如果我有图书搜
我需要创建 rest-easy 客户端,使用其他人创建的 RestService 的 de 接口(interface)...这很好,除了一件事...... 当我从 rest-easy 2.3.5.Fi
我在 resteasy-reactive 项目时收到消息。 (build-70) [io.quarkus.resteasy.common.deployment.ResteasyCommonProces
我写了一个我想测试的 Rest-Service。我想在不运行服务器的情况下运行 JUnit 测试。为此,我使用了 RestEasy 的服务器端模拟框架。 我的问题是,如何使用此框架在 Http-Bod
我正在开发 Resteasy。我将应用程序的 Maven 依赖项从 2.2.x 迁移到 3.0.x,突然间我发现大部分 API 都已弃用。所以这个迁移对我的代码和测试用例有影响,因为它在我的整个代码中
我在使用 RESTEASY 的休息应用程序上需要 CDI 功能。所以我跟着manual's instruction在我的应用程序上设置 resteasy-cdi 模块,它在 JBoss AS7 上运行
我将一个项目从 JBOSS 迁移到 Wildfly Server。我在 standalone.xml 中做了一些更改,一切正常,但是当我从 Postman 发送 JSON 请求时,出现以下异常: ER
我有一个使用restEasy编写的restful服务并部署到JBoss。我有一个 web.xml 被玷污为: Web Application org.restea
我有一个简单的 Hello World 示例 JAX-RS 项目。真的很简单也很愚蠢。只是最小的配置,我打算在未来增强,想象一下这样的事情:https://robferguson.org/blog/2
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
我编写了一些异常映射器来捕获和处理内置的简单异常,如 NotFoundException、MethodNotAllowedException 等,示例代码如下所示: @Provider public
嗨,我正在尝试使用多部分表单上传多个文件 我使用这个,但我得到错误的请求状态,我如何上传多个文件? public class AttachmentBody { @FormParam("file
我是一名优秀的程序员,十分优秀!