博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ServletContext保存访问量
阅读量:6149 次
发布时间:2019-06-21

本文共 371 字,大约阅读时间需要 1 分钟。

ServletContext application  = this.getServletContext(); 

       Integer count = (Integer)application.getAttribute("count");

       if(count == null) {

           count = 1;

       } else {

           count++;

       }

       response.setContentType("text/html;charset=utf-8");

       response.getWriter().print("<h1>本页面一共被访问" + count + "次!</h1>");

       application.setAttribute("count", count);

转载于:https://www.cnblogs.com/ab10/p/4875630.html

你可能感兴趣的文章
实验7 BindService模拟通信
查看>>
scanf
查看>>
Socket编程注意接收缓冲区大小
查看>>
SpringMVC初写(五)拦截器
查看>>
检测oracle数据库坏块的方法
查看>>
SQL server 安装教程
查看>>
Linux下ftp和ssh详解
查看>>
跨站脚本功攻击,xss,一个简单的例子让你知道什么是xss攻击
查看>>
js时间和时间戳之间如何转换(汇总)
查看>>
js插件---图片懒加载echo.js结合 Amaze UI ScrollSpy 使用
查看>>
java中string和int的相互转换
查看>>
P1666 前缀单词
查看>>
HTML.2文本
查看>>
Ubuntu unity安装Indicator-Multiload
查看>>
解决Eclipse中新建jsp文件ISO8859-1 编码问题
查看>>
7.对象创建型模式-总结
查看>>
1、块:ion-item
查看>>
【论文阅读】Classification of breast cancer histology images using transfer learning
查看>>
移动端处理图片懒加载
查看>>
jQuery.on() 函数详解
查看>>