码迷,mamicode.com
首页 > 其他好文 > 详细

ServletContext保存访问量

时间:2015-10-13 21:02:11      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

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);

ServletContext保存访问量

标签:

原文地址:http://www.cnblogs.com/ab10/p/4875630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!