ignore only if null jackson code example
Example 1: jackson ignore null
public class MyDto {
@JsonInclude(Include.NON_NULL)
private String stringValue;
private int intValue;
}
Example 2: jackson ignore values if empty
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class ObjectWithoutEmpty {
@JsonProperty("propertyOne")
private String propertyOne;
@JsonProperty("propertyTWO")
private String propertyTWO;
}
public class ObjectWithoutEmpty {
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@JsonProperty("propertyOne")
private String propertyOne;
@JsonProperty("propertyTWO")
private String propertyTWO;
}