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

📄 counter.jsp

📁 resinweb服务器源文件
💻 JSP
字号:
<%@ page %><%//// The counter is stored in the Application object.// Since Application is shared between different server// threads, it needs to be synchronized to properly update// the state.//Integer count = null;synchronized (application) {  count = (Integer) application.getAttribute("basic.counter");  if (count == null)    count = new Integer(0);  count = new Integer(count.intValue() + 1);  application.setAttribute("basic.counter", count);}%><html><head><title>Counter</title></head><body bgcolor=#ffffff><h1>Welcome, visitor: <%= count %></h1></body></html>

⌨️ 快捷键说明

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