session的使用
Posted fengjianbk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了session的使用相关的知识,希望对你有一定的参考价值。
用session,在首页某个位置显示计科院网站当前在线人数,
效果如图,在多个浏览器浏览时,统计出了在线人数:
session监听代码如下:
package com.yuanze.listener; import javax.servlet.http.HttpSessionEvent; import javax.servlet.http.HttpSessionListener; public class TotalListener implements HttpSessionListener { public static int total=0; @Override public void sessionCreated(HttpSessionEvent se) { System.out.println("创建session"); total++; } @Override public void sessionDestroyed(HttpSessionEvent se) { System.out.println("销毁session"); total--; } }
链接:https://pan.baidu.com/s/1-tTeEY8ddheDwWkZMqllPw
提取码:879v
以上是关于session的使用的主要内容,如果未能解决你的问题,请参考以下文章
一个队asp.net session进行了再次封装的C#类的代码
hibernate在使用getCurrentSession时提示no session found for current thread