首先我们来看看为什么要返回统一的标准格式?
在默认情况下,SpringBoot的返回格式常见的有三种:
@GetMapping("/hello")
public String getStr(){
return "hello,开发喵";
}
此时调用接口获取到的返回值是这样:
hello,开发喵
@GetMapping("test")
public User test() {
User user = new User();
user.setId(1L);
user.setName("kaifamiao");
user.setAge(18);
user.setEmail("kaifamiao@gmail.com");
return user;
}
此时调用接口获取到的返回值是这样:
{
"id": 1,
"name": "kaifamiao",
"age": 18,
"email": "kaifamiao@gmail.com"
}
@GetMapping("/error")
public int error(){
int i = 9/0;
return i;
}
此时调用接口获取到的返回值是这样:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Sat Nov 18 20:17:52 CST 2023
There was an unexpected error (type=None, status=999).
No message available
基于以上种种情况,如果你和前端开发人员联调接口她们就会很懵逼,由于我们没有给他一个统一的格式,前端人员不知道如何处理返回值。
还有甚者,有的同学比如小张喜欢对结果进行封装,他使用了Result对象,小王也喜欢对结果进行包装,但是他却使用的是Response对象,当出现这种情况时我相信前端人员一定会抓狂的。
所以我们项目中是需要定义一个统一的标准返回格式的。
一个标准的返回格式至少包含3部分:
{"code":200,"message":"操作成功","data":"hello,开发喵","timestamp":1700310005605}
当然也可以按需加入其他扩展值,比如我们就在返回对象中添加了接口调用时间
package com.kaifamiao.unifyresulth;
import lombok.Data;
@Data
public class ResultData<T> {
/** 结果状态 ,具体状态码参见ResultData.java*/
private int code;
private String message;
private T data;
private long timestamp ;
public ResultData (){
this.timestamp = System.currentTimeMillis();
}
public static <T> ResultData<T> success(T data) {
ResultData<T> resultData = new ResultData<>();
resultData.setCode(ReturnCode.RC100.getCode());
resultData.setMessage(ReturnCode.RC100.getMessage());
resultData.setData(data);
return resultData;
}
public static <T> ResultData<T> fail(int code, String message) {
ResultData<T> resultData = new ResultData<>();
resultData.setCode(code);
resultData.setMessage(message);
return resultData;
}
}
package com.kaifamiao.unifyresulth;
public enum ReturnCode {
/**操作成功**/
RC100(200,"操作成功"),
/**操作失败**/
RC250(250,"操作失败"),
/**服务限流**/
RC205(205,"服务开启限流保护,请稍后再试!"),
/**服务降级**/
RC201(201,"服务开启降级保护,请稍后再试!"),
/**热点参数限流**/
RC202(202,"热点参数限流,请稍后再试!"),
/**系统规则不满足**/
RC203(203,"系统规则不满足要求,请稍后再试!"),
/**授权规则不通过**/
RC204(204,"授权规则不通过,请稍后再试!"),
/**access_denied**/
RC403(403,"无访问权限,请联系管理员授予权限"),
/**access_denied**/
RC401(401,"匿名用户访问无权限资源时的异常"),
/**服务异常**/
RC500(500,"系统异常,请稍后重试"),
INVALID_TOKEN(2001,"访问令牌不合法"),
ACCESS_DENIED(2003,"没有权限访问该资源"),
CLIENT_AUTHENTICATION_FAILED(1001,"客户端认证失败"),
USERNAME_OR_PASSWORD_ERROR(1002,"用户名或密码错误"),
UNSUPPORTED_GRANT_TYPE(1003, "不支持的认证模式");
/**自定义状态码**/
private final int code;
/**自定义描述**/
private final String message;
ReturnCode(int code, String message){
this.code = code;
this.message = message;
}
public int getCode() {
return code;
}
public String getMessage() {
return message;
}
}
@GetMapping("/hello")
public ResultData<String> getStr(){
return ResultData.success("hello,kaifamiao");
}
此时调用接口获取到的返回值是这样:
{"code":200,"message":"操作成功","data":"hello,开发喵","timestamp":1700310095743}
这样确实已经实现了我们想要的结果,我在很多项目中看到的都是这种写法,在Controller层通过ResultData.success()
对返回结果进行包装后返回给前端。
看到这里我们不妨停下来想想,这样做有什么弊端呢?
最大的弊端就是我们后面每写一个接口都需要调用 ResultData.success()
这行代码对结果进行包装,重复劳动,浪费体力;
而且还很容易被其他老鸟给嘲笑。
所以呢我们需要对代码进行优化,目标就是不要每个接口都手工制定ResultData
返回值。
要优化这段代码很简单,我们只需要借助SpringBoot提供的ResponseBodyAdvice
即可。
ResponseBodyAdvice的作用:拦截Controller方法的返回值,统一处理返回值/响应体,一般用来统一返回格式,加解密,签名等等。
先来看下ResponseBodyAdvice
的源码:
package com.kaifamiao.unifyresulth;
import org.apache.tomcat.util.http.parser.MediaType;
import org.springframework.core.MethodParameter;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.http.server.reactive.ServerHttpResponse;
import org.springframework.lang.Nullable;
public interface ResponseBodyAdvice<T> {
boolean supports(MethodParameter returnType, Class<? extends HttpMessageConverter<?>> converterType);
@Nullable
T beforeBodyWrite(@Nullable T body, MethodParameter returnType, MediaType selectedContentType, Class<? extends HttpMessageConverter<?>> selectedConverterType, ServerHttpRequest request, ServerHttpResponse response);
}
我们只需要编写一个具体实现类即可
package com.kaifamiao.unifyresulth;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.MethodParameter;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.server.ServerHttpRequest;
import org.springframework.http.server.ServerHttpResponse;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import org.springframework.web.servlet.mvc.method.annotation.ResponseBodyAdvice;
@Slf4j
@RestControllerAdvice
public class ResponseAdvice implements ResponseBodyAdvice<Object> {
@Autowired
private ObjectMapper objectMapper;
@Override
public boolean supports(MethodParameter methodParameter, Class<? extends HttpMessageConverter<?>> aClass) {
return true;
}
@SneakyThrows
@Override
public Object beforeBodyWrite(Object o, MethodParameter methodParameter, MediaType mediaType, Class<? extends HttpMessageConverter<?>> aClass, ServerHttpRequest serverHttpRequest, ServerHttpResponse serverHttpResponse) {
log.info("进入返回体,进行包装处理");
if(o ==null ){
log.error("object is null");
return ResultData.fail(ReturnCode.RC250.getCode(),"object is null");
}
if(o instanceof String){
return objectMapper.writeValueAsString(ResultData.success(o));
}
if(o instanceof ResultData){
return o;
}
System.out.println(o.getClass());
return ResultData.success(o);
}
}
@RestControllerAdvice
注解@RestControllerAdvice
是@RestController
注解的增强,可以实现三个方面的功能:
1.全局异常处理
2.全局数据绑定
3.全局数据预处理
if(o instanceof String){
return objectMapper.writeValueAsString(ResultData.success(o));
}
这段代码一定要加,如果Controller直接返回String的话,SpringBoot是直接返回,故我们需要手动转换成json。
经过上面的处理我们就再也不需要通过ResultData.success()
来进行转换了,直接返回原始数据格式,SpringBoot自动帮我们实现包装类的封装。
@GetMapping("/hello")
public String getStr(){
return "hello,kaifamiao";
}
此时我们调用接口返回的数据结果为:
{
"code": 100,
"message": "操作成功",
"data": "hello,kaifamiao",
"timestamp": 1626427373113
}
1.不用手写try…catch,由全局异常处理器统一捕获
使用全局异常处理器最大的便利就是程序员在写代码时不再需要手写try...catch
了,前面我们讲过,默认情况下SpringBoot出现异常时返回的结果是这样:
这种数据格式返回给前端,前端是看不懂的,所以这时候我们一般通过try...catch
来处理异常
@GetMapping("/wrong")
public int error(){
int i;
try{
i = 9/0;
}catch (Exception e){
log.error("error:{}",e);
i = 0;
}
return i;
}
我们追求的目标肯定是不需要再手动写try...catch
了,而是希望由全局异常处理器处理。
@GetMapping("error1")
public void empty(){
throw new RuntimeException("自定义异常");
}
1.当我们引入Validator参数校验器的时候,参数校验不通过会抛出异常,此时是无法用try...catch
捕获的,只能使用全局异常处理器。
SpringBoot集成参数校验请参考这篇文章SpringBoot开发秘籍 – 集成参数校验及高阶技巧
package com.kaifamiao.unifyresulth;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestControllerAdvice;
@Slf4j
@RestControllerAdvice
public class RestExceptionHandler {
/**
* 默认全局异常处理。
* @param e the e
* @return ResultData
*/
@ExceptionHandler(Exception.class)
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
public ResultData<String> exception(Exception e) {
log.error("全局异常信息 ex={}", e.getMessage(), e);
return ResultData.fail(ReturnCode.RC250.getCode(),e.getMessage());
}
}
有三个细节需要说明一下:
1.@RestControllerAdvice
,RestController的增强类,可用于实现全局异常处理器
2.@ExceptionHandler
,统一处理某一类异常,从而减少代码重复率和复杂度,比如要获取自定义异常可以@ExceptionHandler(BusinessException.class)
3.@ResponseStatus
指定客户端收到的http状态码
这时候我们调用如下接口:
@GetMapping("error2")
public void empty(){
throw new RuntimeException("自定义异常");
}
返回的结果如下:
{
"code": 250,
"message": "自定义异常",
"data": null,
"timestamp": 1700310417904
}
基本满足我们的需求了。
要让全局异常接入标准格式很简单,因为全局异常处理器已经帮我们封装好了标准格式,我们只需要直接返回给客户端即可。
@SneakyThrows
@Override
public Object beforeBodyWrite(Object o, MethodParameter methodParameter, MediaType mediaType, Class<? extends HttpMessageConverter<?>> aClass, ServerHttpRequest serverHttpRequest, ServerHttpResponse serverHttpResponse) {
if(o instanceof String){
return objectMapper.writeValueAsString(ResultData.success(o));
}
if(o instanceof ResultData){
return o;
}
return ResultData.success(o);
}
关键代码:
if(o instanceof ResultData){
return o;
}
如果返回的结果是ResultData对象,直接返回即可。
这时候我们再调用上面的错误方法,返回的结果就符合我们的要求了。
{
"code": 250,
"message": "自定义异常",
"data": null,
"timestamp": 1625796580778
}
代码
@GetMapping("/hello")
public String getStr(){
return "hello,开发喵";
}
返回结构
{"code":200,"message":"操作成功","data":"hello,开发喵","timestamp":1700310695715}
代码
@GetMapping("test")
public User test() {
User user = new User();
user.setId(1L);
user.setName("kaifamiao");
user.setAge(18);
user.setEmail("kaifamiao@gmail.com");
return user;
}
返回结构
{
"code": 200,
"message": "操作成功",
"data": {
"id": 1,
"name": "kaifamiao",
"age": 18,
"email": "kaifamiao@gmail.com"
},
"timestamp": 1700310727983
}
代码
@GetMapping("error1")
public User emptyObject(){
return null;
}
返回结构
{
"code": 250,
"message": "object is null",
"data": null,
"timestamp": 1700310774413
}
代码
@GetMapping("error2")
public void empty(){
throw new RuntimeException("自定义异常");
}
返回结构
{
"code": 250,
"message": "自定义异常",
"data": null,
"timestamp": 1700310816378
}
代码
@GetMapping("/wrong")
public int wrong(){
int i;
try{
i = 9/0;
}catch (Exception e){
log.error("error: {}"+e.getMessage());
i = 0;
throw new RuntimeException(e.getMessage());
}
return i;
}
返回结构
{
"code": 250,
"message": "/ by zero",
"data": null,
"timestamp": 1700310848527
}
@GetMapping("/get")
public String error(String username){
if(username==null){
throw new RuntimeException("用户名不能为空");
}
return "Hello,"+username;
}
{
"code": 250,
"message": "用户名不能为空",
"data": null,
"timestamp": 1700311925908
}
{
"code": 250,
"message": "Request method 'POST' not supported",
"data": null,
"timestamp": 1700311961256
}
{"code":200,"message":"操作成功","data":"Hello,linrui","timestamp":1700311983844}
powered by kaifamiao