我是靠谱客的博主 欢喜哈密瓜,最近开发中收集的这篇文章主要介绍SpringBoot项目配置全局处理异常,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、自定义异常

/**
 * 自定义异常
 */
public class RRException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    private String msg;
    private int code = 500;

    public RRException(String msg) {
        super(msg);
        this.msg = msg;
    }

    public RRException(String msg, Throwable e) {
        super(msg, e);
        this.msg = msg;
    }

    public RRException(int code, String msg) {
        super(msg);
        this.msg = msg;
        this.code = code;
    }

    public RRException(String msg, int code, Throwable e) {
        super(msg, e);
        this.msg = msg;
        this.code = code;
    }
}

2、全局异常处理器

import com.youzidata.businesschain.common.Result;
import com.youzidata.businesschain.exception.RRException;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;

/**
 * 全局异常处理器
 */
@RestControllerAdvice
@Slf4j
public class GlobalExceptionHandler {
    /**
     * 业务异常
     */
    @ExceptionHandler(RRException.class)
    public Object businessException(RRException e) {
        log.error(e.getMessage());
        return Result.failure(e.getCode(), e.getMessage());
    }
}

3、异常调用

if (cellSet.size() != sumCellSet.size() || !cellSet.containsAll(sumCellSet)) {
    throw new RRException(1002, "数据错误");
}

4、说明

通过配置全局异常处理器,会过滤到对应的业务异常,然后我们在代码中只需要抛出异常并且不需要另外使用try-catch来进行捕获,则可以处理并返回前端对应的响应码和错误信息。

最后

以上就是欢喜哈密瓜为你收集整理的SpringBoot项目配置全局处理异常的全部内容,希望文章能够帮你解决SpringBoot项目配置全局处理异常所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部