- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
17小时前关门了。
Improve this question
我有一个类A,有两个变量varOne,varTwo,当赋值时我只赋值了varTwo,但是当转换成JSON时我得到了两个值,其中一个未赋值的值为null。我该怎么做才能限制varOne。如果varOne未赋值,我不想在JSON中使用它。
我试着重建JSON,但感觉可以做得更好。
1条答案
按热度按时间quhf5bfb1#
可以将
@JsonInclude(JsonInclude.Include.NON_NULL)
放在类之上