找回密码
 立即注册
查看: 355|回复: 0

[后端] Spring Boot 3:实现统一结果封装

[复制链接]

279

主题

0

回帖

964

积分

超级版主

积分
964
发表于 2024-5-19 13:46:25 | 显示全部楼层 |阅读模式
本帖最后由 Shaw0xyz 于 2024-5-19 13:48 编辑

在现代Web应用开发中,统一的API响应格式能够显著提高前后端协作效率,便于调试和维护。本文将介绍如何在Spring Boot 3中实现统一的结果封装。

为什么需要统一结果封装?

统一的API响应格式带来了以下好处:

1. 一致性:前端无需处理多种响应格式。
2. 可读性:明确的响应结构便于理解和调试。
3. 可维护性:错误处理和日志记录更简洁。

定义统一的响应结构

首先,我们定义一个标准的响应结构。通常包含以下字段:

- code:状态码,标识请求是否成功。
- message:响应信息,描述请求处理结果。
- data:响应数据,承载实际业务数据。

在`src/main/java/com/example/demo`目录下创建一个新的包`response`,并在其中创建`ApiResponse`类:

  1. package com.example.demo.response;

  2. public class ApiResponse<T> {
  3.     private int code;
  4.     private String message;
  5.     private T data;

  6.     public ApiResponse() {}

  7.     public ApiResponse(int code, String message, T data) {
  8.         this.code = code;
  9.         this.message = message;
  10.         this.data = data;
  11.     }

  12.     public int getCode() {
  13.         return code;
  14.     }

  15.     public void setCode(int code) {
  16.         this.code = code;
  17.     }

  18.     public String getMessage() {
  19.         return message;
  20.     }

  21.     public void setMessage(String message) {
  22.         this.message = message;
  23.     }

  24.     public T getData() {
  25.         return data;
  26.     }

  27.     public void setData(T data) {
  28.         this.data = data;
  29.     }

  30.     public static <T> ApiResponse<T> success(T data) {
  31.         return new ApiResponse<>(200, "Success", data);
  32.     }

  33.     public static <T> ApiResponse<T> error(int code, String message) {
  34.         return new ApiResponse<>(code, message, null);
  35.     }
  36. }
复制代码

统一响应处理

为了确保所有的API响应都遵循上述结构,我们可以使用Spring的`@ControllerAdvice`和`@ExceptionHandler`注解。

在`response`包中创建一个名为`GlobalExceptionHandler`的类:

  1. package com.example.demo.response;

  2. import org.springframework.http.HttpStatus;
  3. import org.springframework.http.ResponseEntity;
  4. import org.springframework.web.bind.annotation.ExceptionHandler;
  5. import org.springframework.web.bind.annotation.RestControllerAdvice;

  6. @RestControllerAdvice
  7. public class GlobalExceptionHandler {

  8.     @ExceptionHandler(Exception.class)
  9.     public ResponseEntity<ApiResponse<?>> handleException(Exception e) {
  10.         return new ResponseEntity<>(ApiResponse.error(500, "Internal Server Error: " + e.getMessage()), HttpStatus.INTERNAL_SERVER_ERROR);
  11.     }

  12.     // 处理自定义异常
  13.     @ExceptionHandler(CustomException.class)
  14.     public ResponseEntity<ApiResponse<?>> handleCustomException(CustomException e) {
  15.         return new ResponseEntity<>(ApiResponse.error(e.getCode(), e.getMessage()), HttpStatus.BAD_REQUEST);
  16.     }
  17. }
复制代码

自定义异常

我们可以定义自己的异常类,以便在业务逻辑中抛出并由全局异常处理器捕获:

  1. package com.example.demo.response;

  2. public class CustomException extends RuntimeException {
  3.     private int code;

  4.     public CustomException(int code, String message) {
  5.         super(message);
  6.         this.code = code;
  7.     }

  8.     public int getCode() {
  9.         return code;
  10.     }
  11. }
复制代码

控制器中的统一响应

在控制器中使用`ApiResponse`来封装响应结果。例如:

  1. package com.example.demo.controller;

  2. import com.example.demo.response.ApiResponse;
  3. import com.example.demo.response.CustomException;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.RequestParam;
  6. import org.springframework.web.bind.annotation.RestController;

  7. @RestController
  8. public class DemoController {

  9.     @GetMapping("/hello")
  10.     public ApiResponse<String> hello(@RequestParam(value = "name", defaultValue = "World") String name) {
  11.         if ("error".equals(name)) {
  12.             throw new CustomException(400, "Invalid name");
  13.         }
  14.         return ApiResponse.success("Hello, " + name);
  15.     }
  16. }
复制代码

测试统一响应

启动Spring Boot应用,访问`http://localhost:8080/hello`,应该会得到如下JSON响应:

  1. {
  2.     "code": 200,
  3.     "message": "Success",
  4.     "data": "Hello, World"
  5. }

  6. 访问`http://localhost:8080/hello?name=error`,应该会得到如下JSON响应:

  7. {
  8.     "code": 400,
  9.     "message": "Invalid name",
  10.     "data": null
  11. }
复制代码

结语

通过本文的介绍,我们学习了如何在Spring Boot 3中实现统一的结果封装。统一响应格式不仅提高了代码的可读性和维护性,还简化了前后端的协作。

荔枝学姐爱吃荔枝!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

联系站长|Archiver|手机版|小黑屋|主机论坛

GMT+8, 2025-4-4 13:53 , Processed in 0.085489 second(s), 24 queries .

Powered by 主机论坛 HostSsss.Com

HostSsss.Com

快速回复 返回顶部 返回列表