error.jsp

来自「Struts+Spring+Hibernate开发的BBS,功能很强大很完善」· JSP 代码 · 共 31 行

JSP
31
字号
<%@ page contentType="text/html;charset=ISO8859_1" %>
<%
/**
 *	$RCSfile: error.jsp,v $
 *	$Revision: 1.1.1.1 $
 *	$Date: 2002/09/09 13:50:11 $
 */
%>


<%@ page import="java.io.*,
                 com.jivesoftware.forum.*"
    isErrorPage="true"
%>

Jive论坛<%= JiveGlobals.getJiveVersion() %> 管理工具错误:<p>


<%  exception.printStackTrace();
    if (exception != null) {
        StringWriter sout = new StringWriter();
        PrintWriter pout = new PrintWriter(sout);
        exception.printStackTrace(pout); %>
<pre>
        <%= sout.toString() %>
</pre>
<%  } %>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?