servlet监听器-创新互联

监听器
ServletContextListener  监听servlet的初始化和结束
httpSessionListener      监听session的创建和结束 ,可以利用这个来统计在线登录的人数..
package com.zh;

import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;

public class LoginListener implements HttpSessionListener{
private static int count;
public static int getCount(){
return count;
    }
public void sessionCreated(HttpSessionEvent arg0) {
// TODO Auto-generated method stub        count++;
    }

public void sessionDestroyed(HttpSessionEvent arg0) {
// TODO Auto-generated method stub        count--;
    }
}

注意要在web.xml文件中 设置
<listener>
      <listener-class>com.zh.Test1</listener-class>
  </listener>


ServletContextAttributeListener    当servletContext对象被设置,删除,替换
HttpSessionAttributeListener      当HttpSession对象被设置,删除,替换
ServletRequestAttributeListener    当ServletRequest对象被设置,删除,替换
HttpSessionBindingListener        当HttpSession中添加属性和删除属性
注意: HttpSessionBindingListener不用在web.xml中设置
监听器servlet监听器

ServletContextListener 监听servlet的初始化和结束

10年积累的网站建设、成都网站设计经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先做网站后付款的网站建设流程,更有遂昌免费网站建设让你可以放心的选择与我们合作。

httpSessionListener     监听session的创建和结束 ,可以利用这个来统计在线登录的人数..

package com.zh;

import javax.servlet.http.HttpSessionEvent;

import javax.servlet.http.HttpSessionListener;

public class LoginListener implements HttpSessionListener{

  private static int count;

  public static int getCount(){

     return count;

  }

  public void sessionCreated(HttpSessionEvent arg0) {

     // TODO Auto-generated method stub

     count++;

  }

  public void sessionDestroyed(HttpSessionEvent arg0) {

    // TODO Auto-generated method stub

     count--;

  }

}

注意要在web.xml文件中 设置

<listener>

 <listener-class>com.zh.Test1</listener-class>

 </listener>

ServletContextAttributeListener   当servletContext对象被设置,删除,替换

HttpSessionAttributeListener     当HttpSession对象被设置,删除,替换

ServletRequestAttributeListener   当ServletRequest对象被设置,删除,替换

HttpSessionBindingListener       当HttpSession中添加属性和删除属性

注意: HttpSessionBindingListener不用在web.xml中设置

网页标题:servlet监听器-创新互联
当前路径:https://www.cdcxhl.com/article28/dgcccp.html

成都网站建设公司_创新互联,为您提供网站制作企业网站制作App开发建站公司用户体验品牌网站设计

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

网站优化排名