乐趣区

关于springboot:springboot-空值不返回

1、全局配置

spring.jackson.default-property-inclusion=non_null

2、部分应用

@JsonInclude(JsonInclude.Include.NON_NULL) 
public class OrderTransport { 
    private String name; 
    private Integer age;
}
退出移动版