index.jsp

来自「RESIN 3.2 最新源码」· JSP 代码 · 共 38 行

JSP
38
字号
<%@ page session="false" %><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><%  // stop browser from caching the page  response.setHeader("Cache-Control","no-cache,post-check=0,pre-check=0,no-store");  response.setHeader("Pragma","no-cache");  response.setHeader("Expires","Thu,01Dec199416:00:00GMT");  // refresh every 5 seconds  response.setHeader("refresh","5");%><html><head><title>PeriodicTask typical application page</title></head><body><h1>PeriodicTask typical application page</h1><p>This page is representative of any page in the web application.It will refresh automatically in 5 seconds.  When the Periodic task is running,this page will not be shown.  </p><p>The <a href="admin/periodictask">PeriodicTaskServlet</a> provides anadministration interface to the periodic task.</p><p><a href="admin/mbean.jsp">admin/mbean.jsp</a> provides a very simpleexample of using Jmx to access the PeriodicTask instance.<p></body></html>

⌨️ 快捷键说明

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