SpringBoot简单多模块框架搭建(4)---全局异常构造体

  • 这篇搞一个全局异常构造体

  • 主要目的是当代码报错时有个友好的提示,并且能更具自定义的报错信息快速确定BUG

  • 代码不多就两个类,不多说,看代码

package org.meichao.config;

public class GlobalException extends Exception {

    private int errorCode;

    public GlobalException() {
    }

    public GlobalException(String message) {
        super(message);
    }

    public GlobalException(String message, int errorCode) {
        super(message);
        this.errorCode = errorCode;
    }

    public int getErrorCode() {
        return errorCode;
    }

    public void setErrorCode(int errorCode) {
        this.errorCode = errorCode;
    }
}
package org.meichao.config;

import org.meichao.constants.Constants;
import org.meichao.utils.RespInfoUtils;
import org.meichao.utils.vo.RespInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletRequest;

/**
 * 定义全局异常处理类
 * @ControllerAdvice 捕获所有Controller中抛出的异常
 */

@ControllerAdvice
public class GlobalExceptionHandler {

    private Logger logger = LoggerFactory.getLogger(GlobalExceptionHandler.class);

    /**
     * 处理Exception异常,返回json结果
     * @ExceptionHandler 启动应用后,处理@RequestMapping注解的方法上
     */
    @ExceptionHandler(value = Exception.class)
    @ResponseBody
    public RespInfo<String> defaultErrorHandler(HttpServletRequest request,Exception e){
        logger.info("================》全局异常:",e);
        return RespInfoUtils.create()
                .respFailure(e instanceof GlobalException ? e.getMessage() : "系统错误,请重试").toRespInfo();
    }

}
package org.meichao.hello.controller;

import org.meichao.config.GlobalException;
import org.meichao.hello.service.HelloService;
import org.meichao.utils.RespInfoUtils;
import org.meichao.utils.vo.RespInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/hello")
public class HelloController {

    private Logger logger = LoggerFactory.getLogger(HelloController.class);

    @Autowired
    private HelloService helloService;

    @RequestMapping("/hello")
    public RespInfo hello() throws GlobalException {
        try {
            System.out.println(10/0);
        }catch (Exception e){
            throw new GlobalException("水水水水水水水");
        }
        return RespInfoUtils.create().respSuccess(helloService.getUser()).toRespInfo();
    }

}

 

  • 完结撒花

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值