真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

servlet監(jiān)聽器-創(chuàng)新互聯(lián)

監(jiān)聽器
ServletContextListener  監(jiān)聽servlet的初始化和結(jié)束
httpSessionListener      監(jiān)聽session的創(chuàng)建和結(jié)束 ,可以利用這個(gè)來統(tǒng)計(jì)在線登錄的人數(shù)..
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文件中 設(shè)置

      com.zh.Test1
  


ServletContextAttributeListener    當(dāng)servletContext對象被設(shè)置,刪除,替換
HttpSessionAttributeListener      當(dāng)HttpSession對象被設(shè)置,刪除,替換
ServletRequestAttributeListener    當(dāng)ServletRequest對象被設(shè)置,刪除,替換
HttpSessionBindingListener        當(dāng)HttpSession中添加屬性和刪除屬性
注意: HttpSessionBindingListener不用在web.xml中設(shè)置
監(jiān)聽器servlet監(jiān)聽器

ServletContextListener 監(jiān)聽servlet的初始化和結(jié)束

10年積累的網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先做網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有遂昌免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

httpSessionListener     監(jiān)聽session的創(chuàng)建和結(jié)束 ,可以利用這個(gè)來統(tǒng)計(jì)在線登錄的人數(shù)..

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文件中 設(shè)置

 com.zh.Test1

 

ServletContextAttributeListener   當(dāng)servletContext對象被設(shè)置,刪除,替換

HttpSessionAttributeListener     當(dāng)HttpSession對象被設(shè)置,刪除,替換

ServletRequestAttributeListener   當(dāng)ServletRequest對象被設(shè)置,刪除,替換

HttpSessionBindingListener       當(dāng)HttpSession中添加屬性和刪除屬性

注意: HttpSessionBindingListener不用在web.xml中設(shè)置


網(wǎng)頁標(biāo)題:servlet監(jiān)聽器-創(chuàng)新互聯(lián)
網(wǎng)頁路徑:http://weahome.cn/article/dgcccp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部