序列化时,不向前端返回null

301 阅读1分钟

@JsonInclude(Include.NON_NULL) 这个注解放在类头上就可以解决。 实体类与json互转的时候 属性值为null的不参与序列化

只在配置文件加上一个配置

spring.jackson.default-property-inclusion=non_null