1. 程式人生 > >JavaWeb狀態與會話管理Session

JavaWeb狀態與會話管理Session

count = 0; ServletContext application = getServletContext(); Integer applicationCount = (Integer)application.getAttribute("count"); if(applicationCount != null) { count = applicationCount.intValue(); } out.println("WEB應用程式中發生了" + (++count) + "次訪問<br>"); application.setAttribute("count",new Integer(count));