亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述application————web相关的知识,希望能为你提供帮助。
application
作用域:
只要web服务器不关闭就一直存在
【application————web】
统计页面的统计次数
一个用户 多次刷新也统计
多个用户访问
思路:
需要一个变量 count 记录index.jsp访问次数
方法
public void setAttribute(String name,Object obj);
public Object getAttrbute(String name );
【统计页面】
< %
//实现访问次数的统计
//1、先获取applicationd的属性值
Object count =application.getAttribute("count");
if(count==null){
//2、用户第一次访问 application没有这个值,所以设置一个application
application.setAttribute("count",1);
}else{
//3、用户第二次以上访问,已经有了application这个值,所以需要再原基础上再叠加+1
Integer intCount = (Integer) count;
application.setAttribute("count",intCount+1);
}
//将值取出来
Integer icount=(Integer)application.getAttribute("count");
//打印
out.print("访问次数是:"+icount);
%>
推荐阅读
- Educational Codeforces Round 48 (Rated for Div. 2)G. Appropriate Team
- React16+Redux 实战企业级大众点评WebApp
- 积木式编程——自制app点灯
- SpUtil多样加密存储,兼容android9.0
- Android 控件进阶修炼-仿360手机卫士波浪球进度控件
- c#利用ApplicationContext类 同时启动双窗体的实现
- appniu踩坑
- Flink监控(Monitoring Apache Flink Applications)
- 汽车APP开发时应该加上的功能