我想忽略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;
不起作用。还有别的解决办法吗??
暂无答案!
目前还没有任何答案,快来回答吧!