你会全局统一格式返回吗?

开发 前端
相信全局统一格式返回这个东西在每个项目中都非常重要的,前端需要一个统一的格式给前端,所以我们后端需要封装好结构给前端。

[[428153]]

本文转载自微信公众号「java后端指南」,作者KING鹏哥  。转载本文请联系java后端指南公众号。

相信全局统一格式返回这个东西在每个项目中都非常重要的,前端需要一个统一的格式给前端,所以我们后端需要封装好结构给前端。

1结构

我目前接触的结构基本上是这样的。

  1. "code":"0"
  2. "msg":"请求正常"
  3. "data":{} 

2实现

创建一个统一返回前端的实体类

  1. public class R extends HashMap<String, Object> { 
  2.     private static final long serialVersionUID = 1L; 
  3.  
  4.     /** 
  5.      * 状态码 
  6.      */ 
  7.     public static final String CODE_TAG = "code"
  8.  
  9.     /** 
  10.      * 返回内容 
  11.      */ 
  12.     public static final String MSG_TAG = "msg"
  13.  
  14.     /** 
  15.      * 数据对象 
  16.      */ 
  17.     public static final String DATA_TAG = "data"
  18.  
  19.     /** 
  20.      * 初始化一个新创建的 AjaxResult 对象,使其表示一个空消息。 
  21.      */ 
  22.     public R() { 
  23.     } 
  24.  
  25.     /** 
  26.      * 初始化一个新创建的 AjaxResult 对象 
  27.      * 
  28.      * @param code 状态码 
  29.      * @param msg  返回内容 
  30.      */ 
  31.     public R(String code, String msg) { 
  32.         super.put(CODE_TAG, code); 
  33.         super.put(MSG_TAG, msg); 
  34.     } 
  35.  
  36.     /** 
  37.      * 初始化一个新创建的 AjaxResult 对象 
  38.      * 
  39.      * @param code 状态码 
  40.      * @param msg  返回内容 
  41.      * @param data 数据对象 
  42.      */ 
  43.     public R(String code, String msg, Object data) { 
  44.         super.put(CODE_TAG, code); 
  45.         super.put(MSG_TAG, msg); 
  46.         if (null!=data) { 
  47.             super.put(DATA_TAG, data); 
  48.         } 
  49.     } 
  50.  
  51.     /** 
  52.      * 方便链式调用 
  53.      * 
  54.      * @param key 
  55.      * @param value 
  56.      * @return 
  57.      */ 
  58.     @Override 
  59.     public R put(String key, Object value) { 
  60.         super.put(key, value); 
  61.         return this; 
  62.     } 
  63.  
  64.     /** 
  65.      * 返回成功消息 
  66.      * 
  67.      * @return 成功消息 
  68.      */ 
  69.     public static R success() { 
  70.         return R.success("操作成功"); 
  71.     } 
  72.  
  73.     /** 
  74.      * 返回成功数据 
  75.      * 
  76.      * @return 成功消息 
  77.      */ 
  78.     public static R success(Object data) { 
  79.         return R.success("操作成功", data); 
  80.     } 
  81.  
  82.     /** 
  83.      * 返回成功消息 
  84.      * 
  85.      * @param msg 返回内容 
  86.      * @return 成功消息 
  87.      */ 
  88.     public static R success(String msg) { 
  89.         return R.success(msg, null); 
  90.     } 
  91.  
  92.     /** 
  93.      * 返回成功消息 
  94.      * 
  95.      * @param msg  返回内容 
  96.      * @param data 数据对象 
  97.      * @return 成功消息 
  98.      */ 
  99.     public static R success(String msg, Object data) { 
  100.         return new R("0", msg, data); 
  101.     } 
  102.  
  103.     /** 
  104.      * 返回错误消息 
  105.      * 
  106.      * @return 
  107.      */ 
  108.     public static R error() { 
  109.         return R.error("操作失败"); 
  110.     } 
  111.  
  112.     /** 
  113.      * 返回错误消息 
  114.      * 
  115.      * @param msg 返回内容 
  116.      * @return 警告消息 
  117.      */ 
  118.     public static R error(String msg) { 
  119.         return R.error("-1", msg); 
  120.     } 
  121.  
  122.     /** 
  123.      * 返回错误消息 
  124.      * 
  125.      * @param msg  返回内容 
  126.      * @param data 数据对象 
  127.      * @return 警告消息 
  128.      */ 
  129.     public static R error(String msg, Object data) { 
  130.         return new R("-1", msg, data); 
  131.     } 
  132.  
  133.     /** 
  134.      * 返回错误消息 
  135.      * 
  136.      * @param code 状态码 
  137.      * @param msg  返回内容 
  138.      * @return 警告消息 
  139.      */ 
  140.     public static R error(String code, String msg) { 
  141.         return new R(code, msg, null); 
  142.     } 

3异常处理

正常情况下的返回结构已经弄好了,异常情况下我们也要做处理的。

首先新建几个异常类,根据实际需要创建。

  1. /** 
  2.  * 基本异常 
  3.  */ 
  4. @Getter 
  5. public class BaseException extends RuntimeException { 
  6.     private static final long serialVersionUID = 1L; 
  7.  
  8.     /** 
  9.      * 所属模块 
  10.      */ 
  11.     private final String module; 
  12.     /** 
  13.      * 错误码 
  14.      */ 
  15.     private final String code; 
  16.     /** 
  17.      * 错误码对应的参数 
  18.      */ 
  19.     private final Object[] args; 
  20.     /** 
  21.      * 错误消息 
  22.      */ 
  23.     private final String message; 
  24.  
  25.     public BaseException(String module, String code, Object[] args, String message) { 
  26.         this.module = module; 
  27.         this.code = code; 
  28.         this.args = args; 
  29.         this.message = message; 
  30.     } 
  31.  
  32.     public BaseException(String module, String code, Object[] args) { 
  33.         this(module, code, args, null); 
  34.     } 
  35.  
  36.     public BaseException(String module, String defaultMessage) { 
  37.         this(module, nullnull, defaultMessage); 
  38.     } 
  39.  
  40.     public BaseException(String code, Object[] args) { 
  41.         this(null, code, args, null); 
  42.     } 
  43.     public BaseException(String module, String code, String message) { 
  44.         this(null, code, null, message); 
  45.     } 
  46.     public BaseException(String message) { 
  47.         this(nullnullnull, message); 
  48.     } 
  49.     public String getCode() { 
  50.         return code; 
  51.     } 
  52.     public String getMsg() { return message; } 
  53.     public Object[] getArgs() { 
  54.         return args; 
  55.     } 
  56.     public String getDefaultMessage() { return getMessage(); } 
  1. /** 
  2.  * 自定义异常 
  3.  */ 
  4. public class CustomException extends RuntimeException { 
  5.     private static final long serialVersionUID = 1L; 
  6.  
  7.     private String code; 
  8.  
  9.     private final String message; 
  10.  
  11.     public CustomException(String message) { 
  12.         this.message = message; 
  13.     } 
  14.  
  15.     public CustomException(String message, String code) { 
  16.         this.message = message; 
  17.         this.code = code; 
  18.     } 
  19.  
  20.     public CustomException(String message, Throwable e) { 
  21.         super(message, e); 
  22.         this.message = message; 
  23.     } 
  24.  
  25.     @Override 
  26.     public String getMessage() { 
  27.         return message; 
  28.     } 
  29.  
  30.     public String getCode() { 
  31.         return code; 
  32.     } 

我就创建了两个异常类。

4创建全局异常拦截器

  1. @RestControllerAdvice 
  2. @Slf4j 
  3. public class GlobalExceptionHandler { 
  4.     /** 
  5.      * 基础异常 
  6.      */ 
  7.     @ExceptionHandler(BaseException.class) 
  8.     public R baseException(BaseException e) { 
  9.         return R.error(e.getDefaultMessage()); 
  10.     } 
  11.  
  12.     /** 
  13.      * 业务异常 
  14.      */ 
  15.     @ExceptionHandler(CustomException.class) 
  16.     public R businessException(CustomException e) { 
  17.         if (StringUtils.isNotBlank(e.getCode())) { 
  18.             return R.error(e.getMessage()); 
  19.         } 
  20.         return R.error("-1", e.getMessage()); 
  21.     } 
  22.  
  23.     @ExceptionHandler(Exception.class) 
  24.     public R handleException(Exception e) { 
  25.         log.error(e.getMessage(), e); 
  26.         return R.error(String.format("未知错误%s",e.getMessage())); 
  27.     } 
  28.  
  29.  

其中状态码我们可以单独定义一个类,我为了方便就不写了。

5测试

  1. @RestController 
  2. public class TestAction { 
  3.     @RequestMapping("/test"
  4.     public R test(){ 
  5.        return R.success("请求成功",null); 
  6.     } 
  7.     @RequestMapping("/test2"
  8.     public R test2(){ 
  9.         Student student=new Student(); 
  10.         student.setName("king"); 
  11.         student.setPassword("123456"); 
  12.         return R.success(student); 
  13.     } 
  14.     @RequestMapping("/test3"
  15.     public R test3(){ 
  16.         return R.error("请求失败"); 
  17.     } 
  18.     @RequestMapping("/test4"
  19.     public R test4(){ 
  20.         throw new CustomException("失败了"); 
  21.     } 
  22.  
  23.     @RequestMapping("/test5"
  24.     public R test5() throws Exception { 
  25.         throw new Exception("失败了"); 
  26.     } 

大家可以自己去看看,如果有问题欢迎来骚扰我。

 

视频讲解:https://www.bilibili.com/video/BV1e341117av/

 

责任编辑:武晓燕 来源: java后端指南
相关推荐

2019-09-29 10:23:09

APIJava编程语言

2022-08-31 08:19:04

接口returnCode代码

2010-03-03 18:28:31

RSA 2010联想网御

2015-11-10 17:55:35

微软

2022-07-06 08:01:05

数据库分布式

2024-04-23 08:31:57

pythonfalse

2011-04-28 14:20:56

华硕上网本VX6

2023-11-28 14:32:04

2021-08-27 14:11:49

统一安全工作区桌面虚拟化应用安全

2021-08-19 15:36:09

数据备份存储备份策略

2019-08-22 14:02:00

Spring BootRestful APIJava

2021-07-16 08:58:35

SpringBoot

2022-10-28 21:11:52

m3u8网络

2021-04-14 06:53:52

C# 修饰符 Public

2021-04-16 15:02:11

CAP理论分布式

2014-04-22 10:50:31

统一通信UCBYOD

2021-10-11 10:25:33

排列nums数组

2021-09-09 08:58:32

Excel数据处理函数

2024-02-22 08:31:26

数据恢复工具MySQL回滚SQL

2012-06-20 10:47:25

Team Leader
点赞
收藏

51CTO技术栈公众号