全部开发者教程

企业级在线办公系统

上一小节我们封装了自定义异常,那么在本项目中无论遇到什么样子的异常,都应该集中处理。SpringBoot提供了集中处理异常的功能,这里我们要加以利用。

com.example.emos.api.config包中创建ExceptionAdvice.java类,SpringBoot对全局处理异常的要求很简单,我们只要给这个类加上一个@RestControllerAdvice注解即可。

package com.example.emos.api.config;
import cn.dev33.satoken.exception.NotLoginException;
import cn.hutool.json.JSONObject;
import com.example.emos.api.exception.EmosException;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.MethodArgumentNotValidException;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestControllerAdvice;

@Slf4j
@RestControllerAdvice
public class ExceptionAdvice {
    @ResponseBody
    @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
    @ExceptionHandler(Exception.class)
    public String exceptionHandler(Exception e){
        JSONObject json=new JSONObject();
        //处理后端验证失败产生的异常
        if(e instanceof MethodArgumentNotValidException){
            MethodArgumentNotValidException exception= (MethodArgumentNotValidException) e;
            json.set("error",exception.getBindingResult().getFieldError().getDefaultMessage());
        }
        //处理业务异常
        else if(e instanceof EmosException){
            log.error("执行异常",e);
            EmosException exception= (EmosException) e;
            json.set("error",exception.getMsg());
        }
        //处理其余的异常
        else{
            log.error("执行异常",e);
            json.set("error","执行异常");
        }
        return json.toString();
    }
    
    @ResponseBody
    @ResponseStatus(HttpStatus.UNAUTHORIZED)
    @ExceptionHandler(NotLoginException.class)
    public String unLoginHandler(Exception e){
        JSONObject json=new JSONObject();
        json.set("error",e.getMessage());
        return json.toString();
    }
}
索引目录