Answers for "show filed in json when value is not null in spring boot"

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 "show filed in json when value is not null in spring boot"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language