web.xml 文件追加次の代価を参照してください。
<エラーページ>
<エラーコード>404</エラーコード>
<場所>/building.jsp</location>
</エラーページ>
<エラーページ>
<エラーコード>500</エラーコード>
<場所>/error.jsp</location>
</エラーページ>
<エラーページ>
<エラーコード>404</エラーコード>
<場所>/building.jsp</location>
</エラーページ>
<エラーページ>
<エラーコード>500</エラーコード>
<場所>/error.jsp</location>
</error-page>building.jsp查見る复制に剪断板打印
<%@ ページ言語="java" contentType="text/html; charset=GBK" isErrorPage="true" pageEncoding="GBK"%>
<%
応答.setStatus(HttpServletResponse.SC_OK);
%>
对不起,您请求的页面不到到!
<%@ ページ言語="java" contentType="text/html; charset=GBK" isErrorPage="true" pageEncoding="GBK"%>
<%
応答.setStatus(HttpServletResponse.SC_OK);
%>
对不起,要求された面は到達していません!error.jsp を見て剪断板印刷を作成してください
<%@ ページ言語="java" contentType="text/html; charset=GBK" isErrorPage="true" pageEncoding="GBK"%>
<%@ page import="java.io.*,java.util.*"%>
<%response.setStatus(HttpServletResponse.SC_OK);
%>
<本文>
プログラムは問題を発生しました。この面は現在テスト中であるか、または設定上にある可能性があります。
選択可能
<a href=<%=request.getContextPath()+"/forum/new.jsp" %>>反馈</a>
提醒我... または
<a href="javascript:history.go(-1)">返上一页</a>
<hr width=80%>
<h2><font color=#DB1260>JSP エラー ページ</font></h2>
<p>例外がスローされました: <b> <%=Exception.getClass()%>:<%=Exception.getMessage()%></b></p>
<%
System.out.println("ヘッダ....");
Enumeration<String> e = request.getHeaderNames();
文字列キー。
while(e.hasMoreElements()){
キー = e.nextElement();
System.out.println(key+"="+request.getHeader(key));
}
System.out.println("属性....");
e = request.getAttributeNames();
while(e.hasMoreElements()){
キー = e.nextElement();
System.out.println(key+"="+request.getAttribute(key));
}
System.out.println("パラメータ....");
e = request.getParameterNames();
while(e.hasMoreElements()){
キー = e.nextElement();
System.out.println(key+"="+request.getParameter(key));
}
%>
111<%=request.getAttribute("javax.servlet.forward.request_uri") %>
<%=request.getAttribute("javax.servlet.forward.servlet_path") %>
<p>次のスタック トレースの場合:</p>
<前>
<%Exception.printStackTrace();
ByteArrayOutputStream ostr = 新しい ByteArrayOutputStream();
例外.printStackTrace(new PrintStream(ostr));
out.print(ostr);
%>
</pre>
<hr width=80%>
</body>