error.jsp
来自「anewssystem新闻发布系统集成使用了spring hibernate f」· JSP 代码 · 共 31 行
JSP
31 行
<%@ page contentType="text/html;charset=UTF-8" isErrorPage="true" %>
<%@ page import="org.apache.commons.logging.LogFactory" %>
<%@ include file="/inc/taglibs.jsp"%>
<html>
<head>
<%@ include file="/inc/meta.jsp"%>
<title>Error Page</title>
</head>
<body>
<div id="content">
<%
//Exception from JSP didn't log yet ,should log it here.
String requestUri = (String) request.getAttribute("javax.servlet.error.request_uri");
LogFactory.getLog(requestUri).error(exception.getMessage(), exception);
%>
<h3>System Runtime Error: <br><%=exception.getMessage()%></h3>
<br>
<button onclick="history.back();">Back</button>
<br>
<div id="detail_error_msg" style="display:block">
<pre><%exception.printStackTrace(new java.io.PrintWriter(out));%></pre>
</div>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?