- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在各种示例中看到过这种情况,这些示例展示了如何创建将数组或对象列表作为 URL 一部分的 REST 服务。
我的问题是,如何使用 RESTeasy 实现它?类似下面的内容将是我假设它的工作方式。
@GET
@Path("/stuff/")
@Produces("application/json")
public StuffResponse getStuffByThings(
@QueryParam("things") List<Thing> things);
最佳答案
创建一个 StringConverter并使用包装器对象。这是一个快速而肮脏的例子:
public class QueryParamAsListTest {
public static class Thing {
String value;
Thing(String value){ this.value = value; }
}
public static class ManyThings {
List<Thing> things = new ArrayList<Thing>();
ManyThings(String values){
for(String value : values.split(",")){
things.add(new Thing(value));
}
}
}
static class Converter implements StringConverter<ManyThings> {
public ManyThings fromString(String str) {
return new ManyThings(str);
}
public String toString(ManyThings value) {
//TODO: implement
return value.toString();
}
}
@Path("/")
public static class Service {
@GET
@Path("/stuff/")
public int getStuffByThings(
@QueryParam("things") ManyThings things){
return things.things.size();
}
}
@Test
public void test() throws Exception {
Dispatcher dispatcher = MockDispatcherFactory.createDispatcher();
dispatcher.getProviderFactory().addStringConverter(new Converter());
dispatcher.getRegistry().addSingletonResource(new Service());
MockHttpRequest request = MockHttpRequest.get("/stuff?things=a,b,c");
MockHttpResponse response = new MockHttpResponse();
dispatcher.invoke(request, response);
Assert.assertEquals("3", response.getContentAsString());
}
}
我想你也可以使用 StringParamUnmarshaller
关于arrays - 使用 get 将列表或数组传递给 RESTeasy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8860259/
是否可以为所有意外错误创建全局异常处理程序。 因为不可能像这样制作所有可能的类: 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
我是一名优秀的程序员,十分优秀!