📄 error.jsp
字号:
<%-- JSP container forwards request to this jsp, if any exceptions in processing --%>
<html>
<head><title> URS's Error page </title></head>
<body>
<%@ page isErrorPage="true" %>
<% if (exception != null) { %>
<p> The following exception was thrown:
<p> <%= exception %>
<p> The stack trace is as follows:
<%
ByteArrayOutputStream str = new ByteArrayOutputStream();
exception.printStackTrace(new PrintStream(str));
out.print(str);
}
%>
<p>Please click here to return to <a href="/ursday21ex/">main page</a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -