知识点汇集
2018-11-11 本文已影响0人
八颗小牙坏脾气
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();
}
}