1. 程式人生 > >當spring拋出異常時出現的頁面的@ExceptionHandler(RuntimeException.class) 用法

當spring拋出異常時出現的頁面的@ExceptionHandler(RuntimeException.class) 用法

auth clas str nbsp col 用法 頁面 HA string

當spring拋出異常時出現的頁面的@ExceptionHandler(RuntimeException.class) 用法

主要用在Controller層

  @ExceptionHandler(RuntimeException.class) 
      public String ex() {
          //這個是當spring跑出異常時出現的頁面
        return "redirect:/unauthorized.jsp";
      }

當spring拋出異常時出現的頁面的@ExceptionHandler(RuntimeException.class) 用法