How to tell Jackson to ignore a field during serialization if its value is null?

后端 未结 19 1163
情歌与酒
情歌与酒 2020-11-22 04:55

How can Jackson be configured to ignore a field value during serialization if that field\'s value is null.

For example:

public class SomeClass {
            


        
19条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 05:23

    If you want to add this rule to all models in Jackson 2.6+ use:

    mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
    

提交回复
热议问题