Python 官方文档:入门教程 => 点击学习
目录一. 需求场景二. 前期准备三. 使用@RestControllerAdvice对响应进行增强四. 效果4.1 直接返回List4.2 标记NotControllerRespon
如下图所示,后台向前台响应数据的时候,所有的数据都需要放入自定义的封装Entity才返回给前台。现在想要每个Controller中的方法将原数据直接返回,然后通过某种方法统一封装处理。
⏹获取状态码的接口
public interface IStatusCode {
int getCode();
String getMsg();
}
⏹响应状态码的枚举类
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public enum ResultCodeEnum implements IStatusCode {
SUCCESS(1000, "请求成功"),
FaiLED(1001, "请求失败"),
VALIDATE_ERROR(1002, "参数校验失败"),
RESPONSE_PACK_ERROR(1003, "response返回包装失败");
private int code;
private String msg;
}
⏹业务状态码的枚举类
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public enum BusinessCodeEnum implements IStatusCode {
APP_ERROR(2000, "业务异常"),
PRICE_ERROR(2001, "价格异常");
private int code;
private String msg;
}
⏹自定义业务异常类
import lombok.Getter;
@Getter
public class BusinessException extends RuntimeException {
private int code;
private String msg;
// 手动设置异常
public BusinessException(IStatusCode codeEnum, String message) {
// message用于用户设置抛出错误详情
super(message);
// 状态码
this.code = codeEnum.getCode();
// 状态码配套的msg
this.msg = codeEnum.getMsg();
}
// 默认异常使用APP_ERROR状态码
public BusinessException(String message) {
super(message);
this.code = BusinessCodeEnum.APP_ERROR.getCode();
this.msg = BusinessCodeEnum.APP_ERROR.getMsg();
}
}
⏹自定义注解,标记该注解的方法不进行响应增强
让我们的方法更加灵活,可以选择增强封装或者不增强。
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface NotControllerResponseAdvice {
}
import com.fasterxml.jackson.core.JSONProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
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;
import java.util.Arrays;
import java.util.List;
// 对指定包下面的Controller进行增强
@RestControllerAdvice(basePackages = {"com.example.jmw.controller"})
public class ControllerResponseAdvice implements ResponseBodyAdvice<Object> {
@Override
public boolean supports(MethodParameter methodParameter, Class<? extends HttpMessageConverter<?>> converterType) {
List<Boolean> judgeResultList = Arrays.asList(
// ⭕判断相应的类型是否为ResultVo类型
methodParameter.getParameterType().isAssignableFrom(ResultVo.class),
// ⭕判断响应的方法上是否包含 NotControllerResponseAdvice 注解
methodParameter.hasMethodAnnotation(NotControllerResponseAdvice.class)
);
// 若包含其中一项,则不进行封装
return !judgeResultList.contains(true);
}
@Override
public Object beforeBodyWrite(Object body
, MethodParameter returnType
, MediaType selectedContentType
, Class<? extends HttpMessageConverter<?>> selectedConverterType
, ServerHttpRequest request
, ServerHttpResponse response
) {
// String类型不能直接包装
if (returnType.getGenericParameterType().equals(String.class)) {
ObjectMapper objectMapper = new ObjectMapper();
try {
// 将数据包装在ResultVo里后转换为json串进行返回
return objectMapper.writeValueAsString(ResultVo.build(body));
} catch (JsonProcessingException e) {
// 抛出自定义的业务异常
throw new BusinessException(ResultCodeEnum.RESPONSE_PACK_ERROR, e.getMessage());
}
}
// 否则直接包装成ResultVo返回
return ResultVo.build(body);
}
}
@Controller
@RequestMapping("/test12")
public class Test12Controller {
@PostMapping("/test")
@ResponseBody
public List<String> test() {
return Arrays.asList("1", "2", "3");
}
}
⏹List被包装之后返回给前台
⏹List
未被包装,直接返回数据给前台
⏹返回的就是ResultVo类型,无需包装,直接返回数据给前台
正规军SpringBoot如何处理:参数校验、统一异常、统一响应
到此这篇关于SpringBoot @RestControllerAdvice注解对返回值统一封装的文章就介绍到这了,更多相关SpringBoot返回值统一封装内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: SpringBoot @RestControllerAdvice注解对返回值统一封装的处理方法
本文链接: https://lsjlt.com/news/168418.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0