Json序列化
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
//保证序列化Json的时候,如果是null对象,key也会自动消失
public class ServerResponse<T> implements Serializable {
//使之不再json序列化结果中
@JsonIgnore
public boolean isSuccess() {
return this.status == ResponseCode.SUCCESS.getCode();
}
}
网友评论