当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法
主要用在Controller层
@ExceptionHandler(RuntimeException.class) public String ex() { //这个是当spring跑出异常时出现的页面 return "redirect:/unauthorized.jsp"; }
当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法
主要用在Controller层
@ExceptionHandler(RuntimeException.class) public String ex() { //这个是当spring跑出异常时出现的页面 return "redirect:/unauthorized.jsp"; }