Java Jackson: JSON シリアライズで null, 空文字の項目を出力しない
JsonInclude
Annotation を使う。
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class Foo {
// ...
}
null のみ出力しない場合は、Include.NON_NULL
を指定する。
JsonInclude
Annotation を使う。
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class Foo {
// ...
}
null のみ出力しない場合は、Include.NON_NULL
を指定する。