美文网首页
知识点汇集

知识点汇集

作者: 八颗小牙坏脾气 | 来源:发表于2018-11-11 22:52 被阅读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();
        }
    }
    

    相关文章

      网友评论

          本文标题:知识点汇集

          本文链接:https://www.haomeiwen.com/subject/qqgffqtx.html