1public class MyDto {
2 @JsonInclude(Include.NON_NULL)
3 private String stringValue;
4
5 private int intValue; // standard getters and setters
6}
1public class Object {
2
3 @JsonInclude(NON_NULL)
4 @JsonProperty("property")
5 private String property;
6
7}