在resteasy api中发送响应时忽略json变量

ukxgm1gy  于 2021-07-09  发布在  Java
关注(0)|答案(0)|浏览(235)

我想忽略json响应中的空值变量。尝试使用fasterxml

@JsonSerialize(include = Inclusion.NON_NULL)
@JsonProperty("response_value")
private String response_value = null;

@JsonInclude(Include.NON_NULL)
    @JsonProperty("response_value")
    private String response_value = null;

不起作用。还有别的解决办法吗??

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题