500.jsp
974 Bytes
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html>
<html>
<head>
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link href="${ctx }/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/home.css" rel="stylesheet" type="text/css" />
</head>
<body>
<jsp:include page="${ctx }/view/common/header.jsp" />
<div style="text-align: center; width: 1000px;margin: 100px auto;">
<h2>${errorMessage }</h2>
<div style="display: none;">
<% Exception e = (Exception)request.getAttribute("e"); %>
<% e.printStackTrace(new java.io.PrintWriter(out)); %>
</div>
</div>
<jsp:include page="${ctx }/view/common/bottom.jsp" />
</body>
</html>