关于springboot:springboot-空值不返回

53次阅读

共计 167 个字符,预计需要花费 1 分钟才能阅读完成。

1、全局配置

spring.jackson.default-property-inclusion=non_null

2、部分应用

@JsonInclude(JsonInclude.Include.NON_NULL) 
public class OrderTransport { 
    private String name; 
    private Integer age;
}

正文完
 0