共计 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;
}
正文完
发表至: springboot
2020-10-30