• SpringBoot项目统一处理异常


    package com.chitic.module.core.aop;
    
    import com.chitic.module.core.constant.ChiticCoreConstant;
    import com.chitic.module.core.enums.ChiticResponseCode;
    import com.chitic.module.core.exception.ChiticException;
    import com.chitic.module.core.response.ChiticResponse;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.validation.BindException;
    import org.springframework.validation.BindingResult;
    import org.springframework.web.bind.MethodArgumentNotValidException;
    import org.springframework.web.bind.annotation.ExceptionHandler;
    import org.springframework.web.bind.annotation.RestControllerAdvice;
    
    import javax.servlet.http.HttpServletRequest;
    
    @RestControllerAdvice(ChiticCoreConstant.BASE_PACKAGE)
    @Slf4j
    public class RestControllerExceptionAdvice {
    
       //此处可以拦截JSR303校验不加BindingResult抛出的异常,自定义异常类,按照自己想要的 返回 @ExceptionHandler(BindException.
    class) public ChiticResponse bindExceptionHandler(BindException ex) { BindingResult bindingResult = ex.getBindingResult(); String errorMsg = ""; if (bindingResult != null && bindingResult.getFieldError() != null) { errorMsg = bindingResult.getFieldError().getDefaultMessage(); } return ChiticResponse.fail(ChiticResponseCode.PARAMS_VALUE_ERROR.getCode(), errorMsg); } @ExceptionHandler(MethodArgumentNotValidException.class) public ChiticResponse methodArgumentNotValidExceptionHandler(MethodArgumentNotValidException ex) { BindingResult bindingResult = ex.getBindingResult(); String errorMsg = ""; if (bindingResult != null && bindingResult.getFieldError() != null) { errorMsg = bindingResult.getFieldError().getDefaultMessage(); } return ChiticResponse.fail(ChiticResponseCode.PARAMS_VALUE_ERROR.getCode(), errorMsg); } @ExceptionHandler(ChiticException.class) public ChiticResponse chiticExceptionHandler(HttpServletRequest request, ChiticException ex) { return ChiticResponse.fail(ex.getCode(), ex.getMessage()); } @ExceptionHandler(Exception.class) public ChiticResponse globalExceptionHandler(HttpServletRequest request, Exception ex) { ex.printStackTrace(); log.error(ex.getMessage()); return ChiticResponse.fail(ChiticResponseCode.SYSTEM_ERROR.getCode(), ChiticResponseCode.SYSTEM_ERROR.getMessage()); } @ExceptionHandler(Throwable.class) public ChiticResponse globalExceptionHandler(HttpServletRequest request, Throwable ex) { ex.printStackTrace(); log.error(ex.getMessage()); return ChiticResponse.fail(ChiticResponseCode.SYSTEM_ERROR.getCode(), ChiticResponseCode.SYSTEM_ERROR.getMessage()); } }

    自定义异常类

    package com.chitic.module.core.exception;
    
    import com.chitic.module.core.enums.ChiticResponseCode;
    import com.chitic.module.core.response.ChiticResponse;
    import lombok.*;
    
    /**
     * @author GX
     * @Description: 全局异常
     * @date 2019/5/11 10:18
     */
    @Data
    @NoArgsConstructor
    @AllArgsConstructor
    @Builder
    @EqualsAndHashCode(callSuper = false)
    public class ChiticException extends RuntimeException {
    
        /**
         * 错误编号
         */
        private String code;
    
        /**
         * 错误信息
         */
        private String message;
    
        public static ChiticException of(ChiticResponse response) {
            return ChiticException.builder()
                    .code(response.getCode())
                    .message(response.getMessage())
                    .build();
        }
    
        public static ChiticException of(String code, String message) {
            return ChiticException.builder()
                    .code(code)
                    .message(message)
                    .build();
        }
    
        public static ChiticException of(ChiticResponseCode responseCode) {
            return ChiticException.builder()
                    .code(responseCode.getCode())
                    .message(responseCode.getMessage())
                    .build();
        }
    
    
    }
  • 相关阅读:
    在WINDOWS任务计划程序下执行PHP文件 PHP定时功能的实现
    使用Sublime Text 3进行Markdown 编辑+实时预览
    ni_set()函数的使用 以及 post_max_size,upload_max_filesize的修改方法
    CORS跨域的概念与TP5的解决方案
    tp5模型笔记---多对多
    微信小程序 GMT+0800 (中国标准时间) WXSS 文件编译错误
    ESP8266 LUA脚本语言开发: 外设篇-GPIO输入检测
    ESP8266 LUA脚本语言开发: 外设篇-GPIO输出高低电平
    ESP8266 LUA脚本语言开发: 准备工作-LUA文件加载与变量调用
    ESP8266 LUA脚本语言开发: 准备工作-LUA开发说明
  • 原文地址:https://www.cnblogs.com/gaomanito/p/10863765.html
Copyright © 2020-2023  润新知