gpt4 book ai didi

java - 将多态 json 序列化为特定的 jsonnode

转载 作者:搜寻专家 更新时间:2023-11-01 03:17:10 24 4
gpt4 key购买 nike

我有抽象类的列表

List<Messaging> data;

Messaging 是一个抽象类,另外 3 个类扩展了这个类。

例如,

   Message class extends Messaging
Product class extends Messaging
Filter class extends Messaging

我正在添加上面列表中的所有消息

我在 Messaging 类上使用了 @JsonTypeInfo,如下所示:

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY)
@JsonSubTypes({
@Type(value = Message.class, name = "message"),
@Type(value = Filter.class, name = "filter"),
@Type(value = Product.class , name = "product")})

当我使用 jackson 将此 Java 对象序列化为 JSON 时,我得到如下值:

   {
"@type": "message",
"type": "text",
"value": "Is this the information you need"
}

我希望我的值(value)如下:

"message" : {
"type": "text",
"value": "Is this the information you need"
}

如何将多态对象列表序列化到不同的节点?

最佳答案

更改 JsonTypeInfo 以包含为 WRAPPER_OBJECT

例如:

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include=As.WRAPPER_OBJECT)

关于java - 将多态 json 序列化为特定的 jsonnode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45833715/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com