91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何自定義數據庫響應數據結構

發布時間:2021-11-16 16:25:26 來源:億速云 閱讀:129 作者:iii 欄目:大數據

這篇文章主要講解了“如何自定義數據庫響應數據結構”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何自定義數據庫響應數據結構”吧!

/**
 * @author iqunqunqun
 * @description: 自定義響應數據結構
 * 這個類是提供給門戶,ios,安卓,微信商城用的
 * 門戶接受此類數據后需要使用本類的方法轉換成對于的數據類型格式(類,或者list)
 * 其他自行處理
 * 200:表示成功
 * 404: 表示未發現
 * 500:表示錯誤,錯誤信息在msg字段中
 * 501:bean驗證錯誤,不管多少個錯誤都以map形式返回
 * 502:攔截器攔截到用戶token出錯
 * 555:異常拋出信息
 * ***:其他自定義異常
 */
@Data
@NoArgsConstructor
public class JsonResult {


    /**
     * 響應狀態
     */
    private Integer status;

    /**
     * 響應消息
     */
    private String msg;

    /**
     * 響應數據
     */
    private Object data;

    public static JsonResult build(Integer status, String msg, Object data) {
        return new JsonResult(status, msg, data);
    }

    public static JsonResult ok(Object data) {
        return new JsonResult(data);
    }

    public static JsonResult ok(String msg, Object data) {
        return new JsonResult(msg, data);
    }

    public static JsonResult ok() {
        return new JsonResult("ok", null);
    }

    public static JsonResult errorMsg() {
        return new JsonResult(404, "not found", null);
    }

    public static JsonResult errorMsg(String msg) {
        return new JsonResult(500, msg, null);
    }

    public static JsonResult errorMap(Object data) {
        return new JsonResult(501, "error", data);
    }

    public static JsonResult errorTokenMsg(String msg) {
        return new JsonResult(502, msg, null);
    }

    public static JsonResult errorException(String msg) {
        return new JsonResult(555, msg, null);
    }

    public static JsonResult errorException(Integer status, String msg, Object data) {
        return new JsonResult(status, msg, data);
    }


    private JsonResult(Integer status, String msg, Object data) {
        this.status = status;
        this.msg = msg;
        this.data = data;
    }

    private JsonResult(Object data) {
        this.status = 200;
        this.msg = "OK";
        this.data = data;
    }

    private JsonResult(String msg, Object data) {
        this.status = 200;
        this.msg = msg;
        this.data = data;
    }
}

感謝各位的閱讀,以上就是“如何自定義數據庫響應數據結構”的內容了,經過本文的學習后,相信大家對如何自定義數據庫響應數據結構這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

方山县| 松潘县| 辽阳市| 沿河| 鸡西市| 阿荣旗| 萝北县| 通城县| 荣成市| 宣威市| 桐梓县| 崇州市| 赣榆县| 漳平市| 和龙市| 法库县| 化州市| 华蓥市| 吉林市| 峡江县| 进贤县| 全州县| 谷城县| 沈丘县| 綦江县| 清远市| 邓州市| 贵溪市| 阿拉善左旗| 任丘市| 玛纳斯县| 河津市| 南康市| 育儿| 延安市| 团风县| 呼图壁县| 靖西县| 富锦市| 宽城| 安义县|