error.jsp

来自「this is for appfuse1.8 source using stru」· JSP 代码 · 共 29 行

JSP
29
字号
<%@ page language="java" isErrorPage="true" %><%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %><%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head>    <title><fmt:message key="errorPage.title"/></title>    <link rel="stylesheet" type="text/css" media="all"         href="<c:url value="/styles/default.css"/>" /> </head><body><div id="screen">    <div id="content">    <h1><fmt:message key="errorPage.heading"/></h1>    <%@ include file="/common/messages.jsp" %> <% if (exception != null) { %>    <pre><% exception.printStackTrace(new java.io.PrintWriter(out)); %></pre> <% } else if ((Exception)request.getAttribute("javax.servlet.error.exception") != null) { %>    <pre><% ((Exception)request.getAttribute("javax.servlet.error.exception"))                           .printStackTrace(new java.io.PrintWriter(out)); %></pre> <% } %>    </div></body></html>

⌨️ 快捷键说明

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