IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringBoot对异常的统一处理 -> 正文阅读

[Java知识库]SpringBoot对异常的统一处理

业务场景

统一处理try-catch的异常,并记录日志

代码

BaseBigRuntimeException

import com.alibaba.fastjson.JSON;
import com.watsons.onstore.common.vo.RestResponse;

import java.util.HashMap;
import java.util.Map;

/**
 * 运行时异常封装类
 */
public class BaseBigRuntimeException extends RuntimeException {
    private static final long serialVersionUID = 1L;
    protected static Map<String, String> mapMessage = new HashMap();
    public static final String SYSTEM_INTERNAL_ERROR = "10001";
    public static final String PARAMETER_ERROR = "10002";
    public static final String RECORD_DUPLICATED = "11001";
    public static final String RECORD_NOTEXIST = "11002";
    public static final String APIGATEWAY_ERROR = "99999";
    protected String code;
    protected String rawMessage;

    public BaseBigRuntimeException(String message) {
        this("10001", message);
    }

    public BaseBigRuntimeException(String message, Throwable e) {
        this("10001", message, e);
    }

    public BaseBigRuntimeException(String code, String message) {
        super("{\"code\":\"" + code + "\", \"message\":\"" + message + "\"}");
        this.code = null;
        this.rawMessage = null;
        this.code = code;
        this.rawMessage = message;
    }

    public BaseBigRuntimeException(String code, String message, Throwable e) {
        super("{\"code\":\"" + code + "\", \"message\":\"" + message + "\"}", e);
        this.code = null;
        this.rawMessage = null;
        this.code = code;
        this.rawMessage = message;
    }

    public String getCode() {
        return this.code;
    }

    public String getRawMessage() {
        return this.rawMessage;
    }

    public String toRestResponseJson() {
        return JSON.toJSONString(new RestResponse(this.code, this.rawMessage));
    }

    public static String getMessage(int code) {
        return (String)mapMessage.get(code);
    }

    static {
        mapMessage.put("10001", "系统内部错误");
        mapMessage.put("10002", "业务参数异常");
        mapMessage.put("11001", "记录重复");
        mapMessage.put("11002", "记录不存在");
    }
}

BigException

/**
 * 业务异常封装
 */
public class BigException extends BaseBigRuntimeException {

    public BigException(String info) {
        super(ExceptionCode.FAIL.getCode(), info);
    }

    public BigException(String code, String info) {
        super(code, info);
    }
}

ExceptionCode

/**
 * 异常错误编码
 */
public enum ExceptionCode {
	/**
	 * 异常错误编码
	 *
	 * */
	SYSTEM_ERROR("000000", "系统异常" +
			""),
	SUCCESS("0", "操作成功"),
	FAIL("100000", "操作失败"),
//	NOT_SUPPORTED("100001", "渠道不支持该接口"),
	INVOKE("-2", "接口调用失败"),
	VALIDATION_FAIL("1000", "数据验证失败"),
	INVALID_PARAM("2000", "参数不合法"),
	PARAM_EMPTY_ERROR("2001", "参数不能为空"),
	RECORD_NOT_EXIST("3000", "记录不存在"),
	AUTH_ERROR("4008", "缺失参数auth");

	private final String code;
	private final String msg;

	ExceptionCode(String val, String info) {
		this.code = val;
		this.msg = info;
	}

	public void throwBizException() {
		throw new BigException(this.getCode(), this.getMsg());
	}

	public String getCode() {
		return this.code;
	}

	public String getMsg() {
		return this.msg;
	}


}

BaseControllerAdvice(捕获异常类)
记得在启动类上的@ComponentScan,扫描BaseControllerAdvice

import com.watsons.onstore.common.exception.BigException;
import com.watsons.onstore.common.exception.ExceptionCode;
import com.watsons.onstore.common.vo.RestResponse;
import com.watsons.onstore.framework.logs.OsLog;
import org.apache.commons.collections4.CollectionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.FieldError;
import org.springframework.web.bind.MethodArgumentNotValidException;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;

import java.util.List;

@RestControllerAdvice
public class BaseControllerAdvice {
    private final Logger logger = LoggerFactory.getLogger(this.getClass());

    @ExceptionHandler(Exception.class)
    RestResponse handleException(Exception e) {
        logger.error(e.getMessage(), e);
        return new RestResponse(ExceptionCode.SYSTEM_ERROR.getCode(), ExceptionCode.SYSTEM_ERROR.getMsg());
    }

    @ExceptionHandler(BigException.class)
    RestResponse handleBusinessException(BigException e) {
        logger.error(e.getMessage(), e);
        return new RestResponse(e.getCode(), e.getRawMessage());
    }

    @ExceptionHandler(MethodArgumentNotValidException.class)
    RestResponse handleException(MethodArgumentNotValidException e) {
        StringBuffer sb = new StringBuffer();
        List<FieldError> fieldErrorList = e.getBindingResult().getFieldErrors();
        if (CollectionUtils.isNotEmpty(fieldErrorList)) {
            boolean isFirst = true;
            for (FieldError error : fieldErrorList) {
                if (isFirst) {
                    isFirst = false;
                }else {
                    sb.append(";");
                }
                sb.append(error.getDefaultMessage());
            }
        }
        String errorMsg = sb.toString();
        logger.error(errorMsg, e);
        return new RestResponse(ExceptionCode.VALIDATION_FAIL.getCode(), errorMsg);
    }
}
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:21:20  更:2022-03-24 00:25:47 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 7:03:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码