1. 程式人生 > >Guns——使用全域性異常攔截器(四)

Guns——使用全域性異常攔截器(四)

1.什麼是全域性異常攔截器

  • 從實際使用來看,可以理解成是使用aop技術進行的環繞增強,在執行前可以將一些資料繫結到model或者遮蔽某些欄位,在業務邏輯執行後可以執行業務是否有異常並且進行攔截

2.一般使用場景

較多的用處是用來做全域性的異常處理,將某些不友好的資訊稍微加工變成較為友好的資訊輸出

3.開始使用全域性異常攔截器

  • 實現使用@ControllerAdvice宣告一個建言
  • 使用@ExceptionHandler(xxx.class)可以捕獲需要的異常或者執行時異常,之後再進行處理
  • 使用@ModelAttribute,將鍵值對新增到全域性,所有註解了@RequestMapping都可以獲得此鍵值對
  • 使用@InitBinder,可以定製WebDataBinder
/**
 * 全域性的的異常攔截器(攔截所有的控制器)(帶有@RequestMapping註解的方法上都會攔截)
 *
 * @author fengshuonan
 * @date 2016年11月12日 下午3:19:56
 */
@ControllerAdvice
@Order(-1)
public class GlobalExceptionHandler {
    
    private Logger log = LoggerFactory.getLogger(this.getClass());

    /**
     * 攔截業務異常
     */
    @ExceptionHandler(ServiceException.class)
    @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
    @ResponseBody
    public ErrorResponseData bussiness(ServiceException e) {
        LogManager.me().executeLog(LogTaskFactory.exceptionLog(ShiroKit.getUser().getId(), e));
        getRequest().setAttribute("tip", e.getMessage());
        log.error("業務異常:", e);
        return new ErrorResponseData(e.getCode(), e.getMessage());
    }

   
    /**
     * 攔截未知的執行時異常
     */
    @ExceptionHandler(RuntimeException.class)
    @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
    @ResponseBody
    public ErrorResponseData notFount(RuntimeException e) {
        LogManager.me().executeLog(LogTaskFactory.exceptionLog(ShiroKit.getUser().getId(), e));
        getRequest().setAttribute("tip", "伺服器未知執行時異常");
        log.error("執行時異常:", e);
        return new ErrorResponseData(BizExceptionEnum.SERVER_ERROR.getCode(), BizExceptionEnum.SERVER_ERROR.getMessage());
    }

    @ModelAttribute
    public void addAttribute(Model model){
        model.addAttribute("llg","李利光");
    }
    
    @InitBinder
    public void initBinder(WebDataBinder webDataBinder){
        webDataBinder.setDisallowedFields("id");
    }

}