gpt4 book ai didi

java - Spring : boolean variables in objects get returned

转载 作者:行者123 更新时间:2023-11-30 03:13:31 25 4
gpt4 key购买 nike

假设我有一个对象:

@JsonInclude(JsonInclude.Include.NON_NULL)
public class Foods {

public Foods() {}

@Id
@JsonProperty
private String id;

@JsonProperty
private String name;

@JsonProperty
private Double calories;

@JsonProperty
private boolean sweet;

}

现在,在 Spring REST API 调用中,我仅填充食物的“名称”字段并返回它。

我得到这个作为返回 JSON:

  {
"name": "Strawberry Pies",
"sweet": false
}

您可以看到,由于未填充卡路里,因此 JSON 不会返回它。我猜想“sweet”字段会被填充,因为 boolean 值的默认值为 false。

但是,如果 JSON 字符串一开始就没有填充,我不希望它返回 false 的“sweet” boolean 值。有办法做到这一点吗?

最佳答案

使用

注释您的字段(或属性 getter/setter)
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
private boolean sweet;

NON_DEFAULT 状态的 javadoc

Value that indicates that only properties that have values that differ from default settings (meaning values they have when Bean is constructed with its no-arguments constructor) are to be included.

private boolean sweet;

默认值是false。如果这是您序列化对象的字段值,则 JSON 将不包含它。

同样,如果你有

private boolean sweet = true;

并且相应对象的字段值为true,生成的 JSON 也不会包含它。

关于java - Spring : boolean variables in objects get returned,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33156893/

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