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

📄 error.jsp

📁 基于Maven的质量保证自动化环境配置和演示程序
💻 JSP
字号:
<%@ page language="java" isErrorPage="true" %><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head>    <title><fmt:message key="errorPage.title"/></title>    <link rel="stylesheet" type="text/css" media="all" href="<c:url value='/styles/${appConfig["csstheme"]}/theme.css'/>" /></head><body id="error">    <div id="page">        <div id="content" class="clearfix">            <div id="main">                <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>        </div>    </div></body></html>

⌨️ 快捷键说明

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