Answers for "not serialise null values"

2

jackson ignore null

public class MyDto {     
	@JsonInclude(Include.NON_NULL)
  	private String stringValue;
  
  	private int intValue;     // standard getters and setters
}
Posted by: Guest on October-28-2020
2

jackson ignore value if null

public class Object {
  
    @JsonInclude(NON_NULL)
    @JsonProperty("property")
    private String property;
  
}
Posted by: Guest on June-25-2020

Code answers related to "not serialise null values"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language