修复错误页面报错的问题
This commit is contained in:
parent
0afd1be99c
commit
a727ec75a5
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
|
@ -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/jsp/jstl/fmt" prefix="fmt"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title><spring:message code="error"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<% Exception e = (Exception)request.getAttribute("ex"); %>
|
||||
<% Exception e = null != exception ? (Exception) exception : (Exception)request.getAttribute("ex"); %>
|
||||
<h2>错误: <%= e.getClass().getSimpleName()%></h2>
|
||||
<hr />
|
||||
<h5>错误描述:</h5>
|
||||
|
|
Loading…
Reference in New Issue