error.jsp
592 字节
<%@ page language="java" isErrorPage="true" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<!DOCTYPE html>
<html>
<head>
<title><fmt:message key="errorPage.title"/></title>
</head>
<body id="error">
<div class="container">
<h1><fmt:message key="errorPage.heading"/></h1>
<%@ include file="/common/messages.jsp" %>
<%=exception%>
<% exception.printStackTrace(response.getWriter());%>
<p><fmt:message key="errorPage.message"/></p>
</div>
</body>
</html>