⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error.jsp

📁 相信大家不会很陌生的
💻 JSP
字号:
<%@ page import="java.io.PrintWriter"%>
<%@include file="../common/IncludeTop.jsp"%>

<logic:notPresent name="BeanActionException">
  <logic:notPresent name="message">
    <H3>Something happened...</H3>
    <B>But no further information was provided.</B>
  </logic:notPresent>
</logic:notPresent>
<P/>
<logic:present name="BeanActionException">
  <H3>Error!</H3>
  <B><font color="red"><bean:write name="BeanActionException" property="class.name"/></font></B>
  <P/>
  <bean:write name="BeanActionException" property="message"/>
</logic:present>
<P/>
<logic:present name="BeanActionException">
  <h4>Stack</h4>
  <i><pre>
<%
  Exception e = (Exception)request.getAttribute("BeanActionException");
  e.printStackTrace(new PrintWriter(out));
%>
  </pre></i>
</logic:present>

<%@include file="../common/IncludeBottom.jsp"%>

⌨️ 快捷键说明

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