Springboot全局异常处理

Posted panzer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot全局异常处理相关的知识,希望对你有一定的参考价值。

@ControllerAdvice
public class MyControllerAdvice {
 
    /**
     * 全局异常捕捉处理
     * @param ex
     * @return
     */
    @ResponseBody
    @ExceptionHandler(value = Exception.class)
    public Object errorHandler(HttpServletRequest request,HttpServletResponse response,Exception e) throws Exception{
     
   e.printStackTrace(); if(isAjax(request)){
      return JSONResult.errorException(e.getMessage());
     }else{
        ModelAndView mav = new ModelAndView();
mav.addObject("Exception",e);
        mav.addObject("url",request.getRequestURL);
   mav.setViewName(ERROR_VIEW);
return mav;
      }
}
  public static boolean isAjax(HttpServletRequest request){    

    return(httpRequest.getHeader("
X-Requested-With") != null && "XMLHttpRequest".equalsIgnoreCase(((HttpServletRequest) request).getHeader("X-Requested-With").toString()));

  }
 
}

 

















以上是关于Springboot全局异常处理的主要内容,如果未能解决你的问题,请参考以下文章

springboot 使用@ControllerAdvice注解全局处理系统异常

spring-- springboot配置全局异常处理器

看看人家 SpringBoot 的全局异常处理,多么优雅...

SpringBoot入门二十一,全局异常处理

Springboot全局异常处理

springboot中添加全局异常捕获类