gpt4 book ai didi

java - 删除 json 中由 @JsonUnwrapped 引起的重复键 - RestController

转载 作者:行者123 更新时间:2023-12-01 06:00:39 25 4
gpt4 key购买 nike

我有一个 POJO,其中包含另一个 POJO:

public class Outer {

private Long id;
private String name;

@JsonUnwrapped
private Inner inner;

}

这是内部类:

public class Inner {

private Long id;
private String name;
private String feature;

}

正如您所看到的,这两个对象可能都有 id 和名称,因此当我使用 @JsonUnwrapped 时,可能会有一些重复的键。我有一个休息 Controller :

@RestController
public class Temp {

@RequestMapping("/test")
public Outer test() {
Inner inner = new Inner(null, "innerName", "feature");
Outer outer = new Outer(10L, "outerName", inner);
return outer;
}

}

每当我调用该方法时,结果将是这样的:{"id":1, name:"outerName", id: null, name:"innerName","feature":"feature"}

我想要得到这个结果:

{"id":1, name:"innerName","feature":"feature"}

我的意思是,只要内部对象具有重复键的值,就应该从内部对象中获取该值,如果内部类内的重复键的值为 null,则应该从外部对象。

最佳答案

当您使用@JsonUnwrapped时,Inner将覆盖Outer相同的键。

所以这种情况不会发生 {"id":1, name:"outerName", "id": null, "name":"innerName","feature":"feature"} , {"id": null, "name":"innerName","feature":"feature"} 是正确的

在本例中,我们想要得到 {"id": 1, "name":"innerName","feature":"feature"}

内部需要改变

  public class Inner {

@JsonInclude(JsonInclude.Include.NON_NULL)
private Long id;
private String name;
private String feature;

}

@JsonInclude(JsonInclude.Include.NON_NULL)可以忽略null值,实现使用Outer id

关于java - 删除 json 中由 @JsonUnwrapped 引起的重复键 - RestController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60521793/

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