single custom serializer for all embedded annotated objects that replaces them with their ids(所有嵌入式注释对象的单个自定义序列化程序,用它们的 id 替换它们)
问题描述
我有这样的实体:
@Entity
public Product {
@Id
public int id;
public String name;
@ManyToOne(cascade = {CascadeType.DETACH} )
Category category
@ManyToMany(cascade = {CascadeType.DETACH} )
Set<Category> secondaryCategories;
}
和
@Entity
public Category {
@Id
public int id;
public String name;
@JsonCreator
public Category(int id) {
this.id = id;
}
public Category() {}
}
是否可以仅注释 Category 类或 category 和 secondaryCategories 属性,并使用注释将它们序列化为它们的 id当它们被嵌入时.
is it possible to annotate either just Category class or category and secondaryCategories properties with an annotation that will serialize them to be just their ids when they are embedded.
现在,当我为 id=1 的产品创建 GET 时,我正在从服务器获取信息:
right now I am getting from the server when I make a GET for product with id=1:
{
id: 1,
name: "product 1",
category: {id: 2, name: "category 2" },
secondaryCategories: [{id: 3, name: "category 3" },
{id: 4, name: "category 4" },
{id: 5, name: "category 5" }]
}
有没有可能回来:
{
id: 1,
name: "product 1",
category: 2,
secondaryCategories: [3, 4, 5]
}
使用 @JsonIdentityReference(alwaysAsId = true) 注释 通常工作,但当我获取一个或一个类别列表时也只返回 ids.只有在嵌入 Category 时才需要 id 转换.Category 类
Annotating Category class with @JsonIdentityReference(alwaysAsId = true)
works generally but also returns just ids when I am fetching one or a list of Categories. I need id conversion only when Category is embedded.
谢谢!
推荐答案
您只需要在类别变量上使用 @JsonIdentityReference(alwaysAsId = true).
You need to use @JsonIdentityReference(alwaysAsId = true) on the category variable only.
例如:
@Entity
public Product {
@Id
public int id;
public String name;
@ManyToOne(cascade = {CascadeType.DETACH} )
@JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id", scope=Category.class)
@JsonIdentityReference(alwaysAsId = true)
Category category;
@ManyToMany(cascade = {CascadeType.DETACH} )
Set<Category> secondaryCategories;
}
这篇关于所有嵌入式注释对象的单个自定义序列化程序,用它们的 id 替换它们的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:所有嵌入式注释对象的单个自定义序列化程序,用它们的 id 替换它们
基础教程推荐
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
