• SpringBoot统一功能处理


    目录

    SpringMVC统一处理的三种方式

    1、基于SpringMVC的配置类扩展

     (1)添加路径前缀

    (2)添加拦截器

     2、统一的响应数据格式封装

    3、统一异常处理


    基于SpringAOP已经实现统一功能增强,但如果希望对Controller增强,就无法获取其中的http请求数据。因此,实现以下这些统一增强的业务,就不能使用SpringAOP:

    • 响应数据统一封装;
    • 统一异常处理(返回错误信息的http响应);
    • http请求日志记录。

    SpringMVC统一处理的三种方式

    SpringMVC在SpringBoot项目中,是默认进行了配置,同时也提供了自定义的配置方式。

    1、基于SpringMVC的配置类扩展

     如:

     (1)添加路径前缀

    1. @Override
    2. public void configurePathMatch(PathMatchConfigurer configurer) {
    3. //对Controller中的路径,添加前缀
    4. //需要注意:添加前缀后,之后进行资源访问也需要添加前缀
    5. //第一个参数:要添加的前缀,第二个参数:用于锅炉Controller中的方法
    6. configurer.addPathPrefix("api",(c)->true);
    7. }

    (2)添加拦截器

    添加Controller的方法拦截器=>对请求映射方法进行统一增强。

    web开发中的三大组件:过滤器、拦截器、监听器。

    拦截器:

    • 对web请求和响应进行拦截,然后可以统一处理;
    • Spring中,包含两种拦截器:
      【1】HandlerInterceptor:专门做SpringMVC请求和响应的拦截;
      【2】MethodInterceptor:对方法进行拦截,是SpringAOP的一种实现。

     拦截器的实现原理:

    • HandlerInterceptor的实现原理:SpringMVC是基于框架实现了一个顶级的Servlet:DispatcherServlet,里面封装了很多逻辑,其中包括HandlerInterceptor的逻辑。是基于代码设计上的实现=>不是动态代理!!!
    • MethodInterceptor实现原理:基于动态代理。

     2、统一的响应数据格式封装

    使用@ControllerAdvice+ResponseBodyAdvice的方式实现。

    1. import org.springframework.core.MethodParameter;
    2. import org.springframework.http.MediaType;
    3. import org.springframework.http.server.ServerHttpRequest;
    4. import org.springframework.http.server.ServerHttpResponse;
    5. import org.springframework.web.bind.annotation.ControllerAdvice;
    6. import org.springframework.web.servlet.mvc.method.annotation.ResponseBodyAdvice;
    7. import java.util.HashMap;
    8. import java.util.Map;
    9. @ControllerAdvice
    10. //注解是对Controller进行增强(SpringMVC代码设计)
    11. public class ResponseAdvice implements ResponseBodyAdvice {
    12. //方法的返回值表示是否要对请求映射方法增强
    13. //两个方法参数,可以筛选controller中的请求映射方法
    14. @Override
    15. public boolean supports(MethodParameter returnType, Class converterType) {
    16. return false;
    17. }
    18. //增强的逻辑:http返回的响应,基于方法的返回值来设置响应体body
    19. //第一个方法参数body,是请求映射方法的返回值
    20. //调用登录接口,返回map对象(ok=false,msg=xxx),就是body方法参数
    21. @Override
    22. public Object beforeBodyWrite(Object body,
    23. MethodParameter returnType,
    24. MediaType selectedContentType,
    25. Class selectedConverterType,
    26. ServerHttpRequest request,
    27. ServerHttpResponse response) {
    28. //构造一个统一的返回格式
    29. Map map =new HashMap<>();
    30. map.put("success",true);
    31. map.put("data",body);
    32. return map;
    33. }
    34. }

    3、统一异常处理

    Controller请求映射方法,如果抛异常,由统一异常处理的代码来执行。

    1. import org.springframework.stereotype.Controller;
    2. import org.springframework.web.bind.annotation.ExceptionHandler;
    3. import org.springframework.web.bind.annotation.ResponseBody;
    4. import javax.servlet.http.HttpServletResponse;
    5. import java.util.HashMap;
    6. //统一异常处理
    7. @Controller
    8. public class ExceptionAdvice {
    9. //使用@ExceptionHandler注解,可以设置要补货的Controller请求映射方法抛出的异常类
    10. @ExceptionHandler(Exception.class)
    11. //方法的写法,和Controller请求映射方法的写法类似
    12. //如果返回json就使用@ResponseBody,如果返回网页,就返回资源路径的字符串
    13. @ResponseBody
    14. public Object handle(Exception e,
    15. HttpServletResponse){
    16. HashMap map= new HashMap<>();
    17. map.put("success", 0);
    18. map.put("status", 1);
    19. map.put("msg", e.getMessage());
    20. return map;
    21. }
    22. }
  • 相关阅读:
    文章解读与仿真程序复现思路——电网技术EI\CSCD\北大核心《适应分布式资源渗透率提高的配电网网元规划方法》
    雅思成绩单上的这个符号, CEFR 究竟是什么意思
    springcloud_2021.0.3学习笔记:消费者服务通过nacos负载均衡loadbalance访问生产者服务
    FFmpeg转码参数说明及视频转码示例
    使用 shell 脚本自动获取发版指标数据
    [模版总结] - 树的基本算法3 - 结构转化
    腾讯数字生态大会详解腾讯云全球化发展规划,全真互联为重要发力点
    字节跳动面试官:SpringBoot统一接口返回和全局异常处理怎么玩?
    Hybrid综合应用
    算法-分数
  • 原文地址:https://blog.csdn.net/weixin_54342360/article/details/126069472