统⼀异常处理

为什么会有统⼀异常处理?

在具体的SSM项目开发中,由于Controller层为处于请求处理的最顶层,因此肯定需要在Controller里捕获所有异常,并且做适当处理,返回给前端一个友好的错误码。捕获所有异常,并且做适当处理的过程类似。故会有大量重复的、冗余的异常处理代码。将这些重复的部分抽取出来,使得异常的处理有一个统一的控制中心点。

统⼀异常处理其实就是捕获异常后,处理信息后返回一个结果。

代码实现

假如我们要实现统⼀异常处理。

使用TextController进行测试

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {
    @RequestMapping("/t1")
    public boolean t2() {
        int a = 10 / 0; //抛出ArithmeticException
        return true;
    }

    @RequestMapping("/t2")
    public Integer t3() {
        String a = null;
        System.out.println(a.length()); //抛出NullPointerException
        return 200;
    }
}

我们统一返回Result 对象

import lombok.Data;

@Data
public class Result<T> {

    private String s = "我是Result的s属性";
    private Integer num = 2008;
    private String errMsg;
    private T data;

    public static <T> Result success(T data) {
        Result result = new Result<>();
        result.setData(data);
        return result;
    }

    public static Result fail(String msg) {
        Result result = new Result();
        result.setErrMsg(msg);
        return result;
    }
}

统一异常处理的实现

1.统⼀异常处理使⽤的是 @ControllerAdvice + @ExceptionHandler 来实现的
2.类名, ⽅法名和返回值可以⾃定义, 重要的是注解
3.接⼝返回为数据时, 需要加 @ResponseBody 注解
@ControllerAdvice 表⽰控制器通知类, @ExceptionHandler 是异常处理器,两个结合表
⽰当出现异常的时候执⾏某个通知,也就是执⾏某个⽅法事件
框架:

@ControllerAdvice
@ResponseBody
public class ExceptionAdvice {
    @ExceptionHandler
    public Result handlerException(Exception e) {
        return Result.fail("发生内部错误");
    }
}

以上代码表⽰,如果代码出现Exception异常(包括Exception的⼦类), 就返回⼀个 Result的对象。
我们可以针对不同的异常, 返回不同的结果

import com.wh.advice.model.Result;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;

@ControllerAdvice
@Slf4j
@ResponseBody
public class ExceptionAdvice {
    @ExceptionHandler
    public Result handlerException(Exception e) {
        log.error("发生异常, e: {}", e);
        return Result.fail("发生内部错误");
    }

    @ExceptionHandler
    public Result handlerException(NullPointerException e) {
        log.error("发生异常, e:", e);
        return Result.fail("发生空指针异常");
    }

    @ExceptionHandler
    public Result handlerException(ArithmeticException e) {
        log.error("发生异常, e:", e);
        return Result.fail("发生算术异常");
    }
}

当有多个异常通知时,匹配顺序为当前类及其⼦类向上依次匹配


以上为我个人的小分享,如有问题,欢迎讨论!!!

都看到这了,不如关注一下,给个免费的赞

相关推荐
爪哇学长1 分钟前
Spring框架深度剖析:特性、安全与优化
java·安全·spring
乄bluefox2 分钟前
SpringBoot中使用Sharding-JDBC实战(实战+版本兼容+Bug解决)
java·数据库·spring boot·redis·后端·缓存·bug
TimberWill7 分钟前
字符串-07-判断两个IP是否属于同一子网
java·网络协议·tcp/ip
半桔9 分钟前
(C语言)文件操作
c语言·开发语言
向宇it23 分钟前
【unity小技巧】Unity 四叉树算法实现空间分割、物体存储并进行查询和碰撞检测
开发语言·算法·游戏·unity·游戏引擎
我真的太难了啊27 分钟前
学习QT第二天
开发语言·qt·学习
伏虎山真人30 分钟前
QT程序开机自启方案
开发语言·qt
2401_8576009531 分钟前
企业OA管理系统:Spring Boot技术实践与案例分析
java·spring boot·后端
running up that hill35 分钟前
数据库中的增删改查操作、聚合函数、内置函数、分组查询
java·数据库·sql·mysql
潜洋39 分钟前
Spring Boot 教程之六:Spring Boot - 架构
java·spring boot·后端·架构