一、全局配置spring
spring.jackson.default-property-inclusion=non_null
二、局部使用code
@JsonInclude(JsonInclude.Include.NON_NULL) public class OrderTransport { private String name; private Integer age; }