JSP監聽器用法分析_JSP編程

來源:互聯網
上載者:User

本文執行個體講述了JSP監聽器用法。分享給大家供大家參考,具體如下:

監聽器也叫Listener,是servlet服務的監聽器。它可以監聽用戶端的請求,服務端的操作等。比如統計線上使用者數量。每當增加一個HttpSession時,就會觸發sessionCreate(HttpSessionEvent se)方法,這樣就可以給線上人數加1.常用的監聽器介面如下:

1. ServletContextAttributeListener監聽對ServletContext屬性的操作。比如增加,刪除,修改屬性。

2. ServletContextListener監聽ServletContext。當建立ServletContext時,激發contextInitialized(ServletContextEvent   sce)方法;當銷毀ServletContext時,激發contextDestroyed(ServletContextEvent   sce)方法。

3. HttpSessionListener監聽HttpSession的操作。當建立一個Session時,激發session   Created(HttpSessionEvent   se)方法;當銷毀一個Session時,激發sessionDestroyed   (HttpSessionEvent   se)方法。
4. HttpSessionAttributeListener監聽HttpSession中的屬性的操作。當在Session增加一個屬性時,激發attributeAdded(HttpSessionBindingEvent   se)   方法;

當在Session刪除一個屬性時,激發attributeRemoved(HttpSessionBindingEvent se)方法;

當在Session屬性被重新設定時,激發attributeReplaced(HttpSessionBindingEvent se) 方法。

一個線上統計的例子:

public class ONline implements ServletContextListener,HttpSessionListener,HttpSessionAttributeListener(){private ServletContext application = null; public void contextInitialized(ServletContextEvent arg0) { //根據響應事件參數初始化ServletContext this.application = arg0.getServletContext(); //在ServletContext中存放一個空的使用者資訊列表 application.setAttribute("users", new ArrayList()); } public void sessionDestroyed(HttpSessionEvent arg0) { List list = (List)application.getAttribute("users"); String name = arg0.getSession().getAttribute("name").toString(); list.remove(name); application.setAttribute("users", list); } public void attributeAdded(HttpSessionBindingEvent arg0) { List list = (List)application.getAttribute("users"); if(arg0.getName().equals("name")){  list.add(arg0.getValue().toString()); } application.setAttribute("users", list); }}

web.xml檔案中配置:

<listener>   <listener-class>package.classname</listener-class></listener>

附:session在何時被建立?

常見的誤解是session在有用戶端訪問時就被建立,然而事實是某server端調用HttpServletRequest.getSession(true)這樣的語句時才被建立。注意如果jsp頁面沒有顯式的使用<%page session="false"%>來關閉session,則在jsp頁面編譯成Servlet頁面時會自動加上HttpServletRequest.getSession(true)這句話。這也是jsp中隱藏對象session的來曆。

希望本文所述對大家jsp程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.