• Spring Boot之统一处理异常


    1. @ControllerAdvice

    • 用于修饰类,表示该类时 Controller 的全局配置类
    • 在此类中,可以对 Controller 进行如下三种全局配置:异常处理方案、绑定数据方案、绑定参数方案

    2. @ExceptionHandler

    • 用于修饰方法,该方法会在 Controller 出现异常后被调用,用于处理捕获到的异常。

    3. @ModelAttribute

    • 用于修饰方法,该方法会在 Controller 方法执行前被调用,用于为 Model 对象帮点该参数。

    4. @DataBinder

    • 用于修饰方法,该方法会在 Controller 方法执行前被调用,用于绑定参数的转换器。

    5. 示例

    定义一个控制器通知组件,处理所有Controller所发生的异常。
    controller/advice/ExceptionAdvice.java

    package com.nowcoder.community.controller.advice;
    
    import com.nowcoder.community.util.CommunityUtil;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.ControllerAdvice;
    import org.springframework.web.bind.annotation.ExceptionHandler;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import java.io.PrintWriter;
    
    @ControllerAdvice(annotations = Controller.class)
    public class ExceptionAdvice {
    
        private static final Logger logger = LoggerFactory.getLogger(ExceptionAdvice.class);
    
        @ExceptionHandler({Exception.class})
        public void handleException(Exception e, HttpServletRequest request, HttpServletResponse response) throws IOException {
            logger.error("服务器发生异常: " + e.getMessage());
            for (StackTraceElement element : e.getStackTrace()) {
                logger.error(element.toString());
            }
    
            String xRequestedWith = request.getHeader("x-requested-with");
            if ("XMLHttpRequest".equals(xRequestedWith)) {
                response.setContentType("application/plain;charset=utf-8");
                PrintWriter writer = response.getWriter();
                writer.write(CommunityUtil.getJSONString(1, "服务器异常!"));
            } else {
                response.sendRedirect(request.getContextPath() + "/error");
            }
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
  • 相关阅读:
    第k小的数
    【C++List容器底层剖析】完成了List容器的一些常用函数接口
    求一份网页设计结课大作业,要求用到html,css,javascript,的知识
    ShardingSphere学习(超详细)
    网络——127.0.0.1的解析
    ASPICE风险管理与合规性策略:确保汽车软件开发的稳健与高效
    阿里、腾讯、百度大厂的程序员编程指南规范
    采用BERT-BiLSTM-CRF模型的中文位置语义解析
    会话技术——cookie
    嵌入式系统开发笔记88:认识51微控制器系统架构
  • 原文地址:https://blog.csdn.net/hutianle/article/details/126505216