gpt4 book ai didi

java - 如何自定义java对象的序列化

转载 作者:行者123 更新时间:2023-12-01 19:36:18 25 4
gpt4 key购买 nike

如何序列化该对象。但仅限对象 anotherObject 的字段,但 json 中没有“anotherObject”键

class A{
int some = 1;
B anotherObject = new B();
}

class B{
int someB = 2;
}

我需要下一个 JSON 作为序列化结果

{
"A":{
some: 1,
anotherSome: 2
}
}

最佳答案

您可以使用@JsonUnwrapped注释。

class A {
@JsonProperty
int some = 1;

@JsonUnwrapped
B anotherObject = new B();
}

class B {
@JsonProperty
int someB = 2;
}

关于java - 如何自定义java对象的序列化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57373096/

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