springboot全局异常捕获

  • Post author:
  • Post category:其他


springboot捕获全局异常有多种方法,主要使用切面,有专门针对web系统的切面,也有针对rest的切面,

我们这里看下RestControllerAdvice, RestControllerAdvice是专门针对rest服务项目使用的切面,返回的数据默认是json

首先我们定义一个全局类GlobalExceptionHandler, 在类上使用切面,

然后在方法中@ExceptionHandler(value=Exception.class),来标记捕获异常,当然可以自定义异常类型,

这样就可以针对不同类型的异常来调用不同的方法进行捕获

package com.bjshengeng.cooperate.vcps.wms.config;

import com.bjshengeng.cooperate.vcps.core.CommonResult;
import com.bjshengeng.cooperate.vcps.wms.controller.BadController;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;

import javax.servlet.http.HttpServletRequest;

@RestControllerAdvice
public class GlobalExceptionHandler {

    private static final Logger LOGGER = LoggerFactory.getLogger(GlobalExceptionHandler.class);
    @ExceptionHandler(value=Exception.class)
   public CommonResult handleException(Exception e, HttpServletRequest request)
    {
        LOGGER.error("url {}, msg {}", request.getRequestURL(), e.getMessage());
        return  CommonResult.failed(e.getMessage());
    }

}



版权声明:本文为zx13525079024原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。