SSM 配置异常跳转页面

说明:

spring配置文件加入:




   
      
          views/error
         
      
   
   
      
         500
      
   
   
   
   
   
   
   

添加error.jsp异常页面

输出异常信息

哎呦,系统失联了...

<% Exception ex = (Exception) request.getAttribute("exception"); %>

Exception: <%=ex.toString()%>  

异常方法:

@RequestMapping("error")
public String testError() throws Exception{
   throw new Exception();
   
}

效果图

SSM 配置异常跳转页面_第1张图片

你可能感兴趣的:(学习笔记)