欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java Springboot全局异常处理

程序员文章站 2022-06-24 10:21:42
目录前言一、思路?二、步骤1.自定义接口:2.自定义错误枚举3.自定义异常类4.异常捕获5.在代码中抛异常总结前言对于作为菜鸟程序员的我来说,经常在controller使用try-catch 来包裹住...

前言

对于作为菜鸟程序员的我来说,经常在controller使用try-catch 来包裹住我的service层代码,首页,他及其的不好看,其次,每个方法都有这种代码块,思考有没有办法去掉它,并且优雅的处理异常。这就是今天要说的全局异常捕获

提示:以下是本篇文章正文内容,下面案例可供参考

一、思路?

springboot提供了全局异常处理的注解,我们需要弄明白的是。扑捉什么异常,结果如果返回,如何优雅的管理返回的结果集。

二、步骤

1.自定义接口:

自定义接口主要是描述返回的code码和返回msg,自定义错误描述枚举需要实现这个接口

public interface errortype {
    /**
     * 返回code
     *
     * @return
     */
    string getcode();
    /**
     * 返回mesg
     *
     * @return
     */
    string getmesg();
}

2.自定义错误枚举

使用枚举,看起来代码很优雅,并且不用使用static final来定义类型。

@getter
public enum systemerrortype implements errortype {
    system_error("-1", "系统异常"),
    system_busy("000001", "系统繁忙,请稍候再试");
    /**
     * 错误类型码
     */
    private string code;
    /**
     * 错误类型描述信息
     */
    private string mesg;
    systemerrortype(string code, string mesg) {
        this.code = code;
        this.mesg = mesg;
    }
}

3.自定义异常类

@getter
public class myexception extends runtimeexception{
    /**
     * 异常对应的错误类型
     */
  private final errortype errortype;
   /**
    * 默认是系统异常
    */
   public myexception () {
       this.errortype = systemerrortype.system_error;
   }
   public myexception(systemerrortype systemerrortype) {
	   this.errortype = systemerrortype;
    }

4.异常捕获

@restcontrolleradvice
@slf4j
public class globalexceptionhandleradvice extends defaultglobalexceptionhandleradvice {
    @exceptionhandler(value = {myexception .class})
    public result myexception (myexception ex) {
        log.error(ex.getmessage());
        return result.fail(ex.geterrortype());
    }
    @exceptionhandler(value = {notroleexception.class})
    public result notroleexception(notroleexception nle) {
        // 打印堆栈,以供调试
        //nle.printstacktrace();
        string message = "该功能仅供"+nle.getrole()+"使用!";
        // 返回给前端
        return result.fail("090017",message,null);
    }
}

也不是说只能通过枚举来返回,只要你的返回工具类支持参数填写,可以做类似于第二种的返回,但是这样方法对于返回的code来太好管理

5.在代码中抛异常

比如我做判空处理时,利用枚举作为参数返回

    @postmapping("/listquestionvo")
    public result listquestionbankvo(@requestbody questionbankquery query){
        if (query.getpagenum()==null || query.getpagesize()==null){
            return result.fail(questionnaireerrortype.parameterisnull_error);
        }
        result result = questionbankservice.listquestionbankvo(query);
        return result;
    }

实际上,你可以在你需要处理异常的地方直接throws异常,可以直接在方法上throws抛出,等待全局异常捕获

总结

只要管理code到位,用返回类型的工具类来替换枚举更适合小白

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注的更多内容!