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

📄 systemerror.jsp

📁 仿照著名的petstore写的网上书店
💻 JSP
字号:
<%-- Copyright 2006 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at: http://developer.sun.com/berkeley_license.html$Id: systemerror.jsp,v 1.3 2007/01/09 19:02:12 basler Exp $ --%><%@ page isErrorPage="true" %><%@ page import="com.sun.javaee.blueprints.petstore.util.PetstoreUtil, java.util.logging.Level" %><%PetstoreUtil.getLogger().log(Level.INFO, "Encountered a Runtime Exception and being transferred the the systemerror page", exception);%><html>    <head>        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >        <title>Book Store Reference Application: System Error Page</title>    </head>    <body>                <jsp:include page="banner.jsp" />                <h2>System Error !</h2>        <p>We had problems processing your request. An exception has been caught,         so perhaps your application was not set up or deployed properly.</p>        The Exception that was thrown is:<b> <%= exception.toString() %></b>.  The server log will contain the stack trace of the exception.                <p><a href="${pageContext.request.contextPath}/faces/index.jsp">Go back to application home</a></p>        <br/><br/>        <jsp:include page="footer.jsp" />            </body></html>

⌨️ 快捷键说明

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