码迷,mamicode.com
首页 > Web开发 > 详细

使用HttpStaus自定义返回状态

时间:2019-11-16 19:38:59      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:private   import   vat   nal   this   cat   col   状态   static   

一、导入依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>

            <!-- 这个是剔除掉自带的 tomcat部署的-->
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>

        </dependency>
import java.util.HashMap;
import java.util.Map;

import org.springframework.http.HttpStatus;

public class R extends HashMap<String, Object> {
    private static final long serialVersionUID = 1L;
    /***返回码101:卡号已存在*****/
    public final static Integer RESULT_CODE_101=101;
    public final static String RESULT_CODE_101_TEXT="数据已存在";
    public R() {
        put("code", 0);
    }
    
    public static R error() {
        return error(HttpStatus.INTERNAL_SERVER_ERROR.value(), "未知异常,请联系管理员");
    }
    
    public static R error(String msg) {
        return error(HttpStatus.INTERNAL_SERVER_ERROR.value(), msg);
    }
    
    public static R error(int code, String msg) {
        R r = new R();
        r.put("code", code);
        r.put("msg", msg);
        return r;
    }

    public static R ok(String msg) {
        R r = new R();
        r.put("msg", msg);
        return r;
    }
    
    public static R ok(Map<String, Object> map) {
        R r = new R();
        r.putAll(map);
        return r;
    }
    public static R ok(int nums) {
        R r = new R();
        r.put("msg", nums);
        return r;
    }
    public static R ok() {
        return new R();
    }

    public R put(String key, Object value) {
        super.put(key, value);
        return this;
    }
}

 

使用HttpStaus自定义返回状态

标签:private   import   vat   nal   this   cat   col   状态   static   

原文地址:https://www.cnblogs.com/flypig666/p/11872780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!