SpringBoot进行统一异常处理

使用@ControllerAdvice注解实现全局异常处理

案例demo

@ControllerAdvice
@Slf4j
public class GlobalExceptionHandler {

	// 参数校验异常捕获返回
    @ExceptionHandler(MethodArgumentNotValidException.class)
    @ResponseBody
    public ResultData> handleMethodArgumentNotValidExceptionHandler(MethodArgumentNotValidException ex) {
        BindingResult bindingResult = ex.getBindingResult();
        List list = new ArrayList<>();
        List fieldErrors = bindingResult.getFieldErrors();
        for (FieldError fieldError : fieldErrors) {
            list.add(fieldError.getField() + ":" + fieldError.getDefaultMessage());
        }
        Collections.sort(list);

        return ResultData.builder(false, 400, "参数校验异常", list);
    }

    /**
     * 处理自定义异常
     *
     * @param e 异常
     * @return 统一错误结果返回
     */
    @ExceptionHandler(value = BaseException.class)
    @ResponseBody
    public ResultData bizExceptionHandler(BaseException e) {
        log.error("BaseException异常,请检查", e);
        return ResultData.fail(e.getCode(), e.getMessage());
    }

    /**
     * 处理其他异常
     *
     * @param e 异常
     * @return 统一错误结果返回
     */
    @ExceptionHandler(value = Exception.class)
    @ResponseBody
    public ResultData exceptionHandler(Exception e) {
        log.error("运行时异常,请检查", e);
        return ResultData.fail(Status.UNKNOWN_ERROR);
    }

}

你可能感兴趣的:(spring,boot,java,spring)