|
@@ -1,4 +1,4 @@
|
|
|
-<%@ page contentType="text/html; charset=utf-8"%>
|
|
|
|
|
|
|
+<%@ page contentType="text/html; charset=utf-8" isErrorPage="true"%>
|
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
|
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
|
@@ -12,7 +12,7 @@
|
|
|
<title><spring:message code="error"/></title>
|
|
<title><spring:message code="error"/></title>
|
|
|
</head>
|
|
</head>
|
|
|
<body>
|
|
<body>
|
|
|
-<% Exception e = (Exception)request.getAttribute("ex"); %>
|
|
|
|
|
|
|
+<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
|
|
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
|
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
|
|
<hr />
|
|
<hr />
|
|
|
<h5>错误描述:</h5>
|
|
<h5>错误描述:</h5>
|