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

后端 未结 19 1212
情歌与酒
情歌与酒 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条回答
  •  鱼传尺愫
    2020-11-22 05:09

    This Will work in Spring boot 2.0.3+ and Jackson 2.0+

    import com.fasterxml.jackson.annotation.JsonInclude;
    
    @JsonInclude(JsonInclude.Include.NON_NULL)
    public class ApiDTO
    {
        // your class variable and 
        // methods
    }
    

提交回复
热议问题