- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在纠结如何将 POJO 中的嵌入对象表示为链接而不是直接嵌入它们时遇到了问题。
我正在与 Jettison 供应商一起取消 RESTEasy。全部在 3.0.11.Final 版本中。
Book.java POJO
public class Book
{
private Integer bookId;
private String title;
private Author author;
}
作者.java POJO
public class Author
{
private Integer authorId;
private String name;
}
当我使用 RESTEasy 生成一本书的 XML 或 JSON 表示时,我看到了这个:
<book>
<bookId>1</bookId>
<title>My book</title>
<author>
<authorId>2</authorId>
<name>Andre Schild</name>
</author>
</book>
但我不想这样:
<book>
<bookId>1</bookId>
<title>My book</title>
<author author="2"><atom:link rel="list" href="http://.../rest/authors/2"/></author>
</book>
由于我们使用 JPA 作为数据库后端连接,POJO 直接包含作者 POJO,而不仅仅是 ID。
我也用 Jersey 做了一些测试,但也卡在了同样的问题上
最佳答案
因为没有人知道作者字段和 URI 之间的关系,所以这不会自动发生。使用插件 reasteasy-links,您可以使用两个注释 @AddLinks
和 @LinkResource
定义这些关系。你可以找到more information in the docs .
此插件不会更改字段的值,但会向实体添加原子链接。此外,它仅适用于 Jettison 和 JAXB。
这是一个使用 Jackson 的快速+肮脏的例子它真正取代了作者字段的值。
我们将使用这个注解来定义 POJO 和资源之间的关系:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Linked {
String path();
String rel() default "";
}
这个注解需要应用到 Author 类:
@Linked(path = "/rest/authors/{authorId}", rel = "list")
public class Author {}
在 Book 字段中,我们需要添加我们要使用的 Serializer:
public class Book {
@JsonSerialize(using = LinkedSerializer.class)
private Author author;
}
Serializer 看起来像这样:
public class LinkedSerializer extends JsonSerializer<Object> {
@Override
public void serialize(Object value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
Linked linked = value.getClass().getAnnotation(Linked.class);
Matcher matcher = Pattern.compile("\\{(.+?)\\}").matcher(linked.path());
if (!matcher.find()) {
return;
}
String param = matcher.group(1);
try {
Field field = value.getClass().getDeclaredField(param);
field.setAccessible(true);
Object paramValue = field.get(value);
String path = linked.path().replaceFirst("\\{.*\\}", paramValue.toString());
jgen.writeStartObject();
jgen.writeFieldName("href");
jgen.writeString(path);
jgen.writeFieldName("rel");
jgen.writeString(linked.rel());
jgen.writeEndObject();
} catch (NoSuchFieldException | SecurityException | IllegalAccessException ex) {
throw new IllegalArgumentException(ex);
}
}
}
注意:我们在这里只使用路径而不是完整的 URI,因为我们不知道基本 URI,也无法在此序列化程序中注入(inject) UriInfo 或 ServletRequest。但是您可以通过 ResteasyProviderFactory.getContextData(HttpServletRequest.class)
获取 ServletRequest。
关于java - RESTEasy POJO json "embedded"对象作为链接/id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31592329/
是否可以为所有意外错误创建全局异常处理程序。 因为不可能像这样制作所有可能的类: 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
我是一名优秀的程序员,十分优秀!