标签:抛出异常 return spring redirect control exce handler 页面 div
当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法
主要用在Controller层
@ExceptionHandler(RuntimeException.class) public String ex() { //这个是当spring跑出异常时出现的页面 return "redirect:/unauthorized.jsp"; }
当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法
标签:抛出异常 return spring redirect control exce handler 页面 div
原文地址:https://www.cnblogs.com/charlypage/p/9191715.html