All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.huanminabc.utils_common.spring.HttpJsonResponse Maven / Gradle / Ivy

There is a newer version: 1.0.5-RELEASE
Show newest version
package com.gitee.huanminabc.utils_common.spring;

import com.alibaba.fastjson.PropertyNamingStrategy;
import com.alibaba.fastjson.serializer.SerializeConfig;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

/**
 * @author dn
 * @since 2023/12/15
 */
@Data
@NoArgsConstructor
public class HttpJsonResponse implements Serializable {

    protected static SerializeConfig config = new SerializeConfig();
    private static final long serialVersionUID = -1133943227545232191L;
    private static final Object EMPTY = null;
    public static final Integer SUCCESS_DEFAULT_CODE = 0;
    public static final Integer FAILED_DEFAULT_CODE = -1;

    private String traceId=com.lwq.logtrace.tookit.LogTraceContextHolder.get();//日志追踪id
    private T data;
    private Integer code;
    private String message;


    static {
        //序列化的时候,将返回值转换为a_b_c的形式
        config.propertyNamingStrategy = PropertyNamingStrategy.SnakeCase;
    }

    public static  HttpJsonResponse success() {
        HttpJsonResponse httpJsonResult = new HttpJsonResponse<>();
        httpJsonResult.setCode(SUCCESS_DEFAULT_CODE);
        httpJsonResult.setMessage("成功");
        httpJsonResult.setData(null);
        return httpJsonResult;
    }

    public static  HttpJsonResponse success(T t) {
        HttpJsonResponse httpJsonResult = new HttpJsonResponse<>();
        httpJsonResult.setCode(SUCCESS_DEFAULT_CODE);
        httpJsonResult.setMessage("成功");
        httpJsonResult.setData(t);
        return httpJsonResult;
    }

    public static  HttpJsonResponse failed(Integer code, String message) {
        HttpJsonResponse httpJsonResult = new HttpJsonResponse<>();
        httpJsonResult.setCode(code);
        httpJsonResult.setMessage(message);
        return httpJsonResult;
    }

    public static  HttpJsonResponse failed(String message) {
        return failed(FAILED_DEFAULT_CODE, message);
    }
    public static  HttpJsonResponse failed() {
        return failed(FAILED_DEFAULT_CODE, "失败");
    }

    @Deprecated
    public  HttpJsonResponse add(R bean) {
       HttpJsonResponse response = new HttpJsonResponse<>();
       response.setCode(this.getCode());
       response.setMessage(this.getMessage());
       response.setData(bean);
       return response;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy