统一异常处理

统一异常处理,第1张

统一异常处理 统一异常处理
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;


@ControllerAdvice
public class GlobalExceptionHandler {
    
    @ExceptionHandler(Exception.class)//当出现什么异常会执行以下方法
    @ResponseBody//返回数据
    public Result error(Exception e){
       e.printStackTrace();
       return Result.error().message("异常,请联系admin");
    }

    
    @ExceptionHandler(ArithmeticException.class)//当出现什么异常会执行以下方法
    @ResponseBody//返回数据
    public Result error(ArithmeticException e){
        e.printStackTrace();
        return Result.error().message(e.getMessage());
    }

    
    @ExceptionHandler(MyException.class)//当出现什么异常会执行以下方法
    @ResponseBody//返回数据
    public Result error(MyException e){
        e.printStackTrace();
        return Result.error().code(e.getCode()).message(e.getMessage());
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5574765.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存