您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關java中listers的使用方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
Java listers是監聽器的意思,用于監聽Web應用的內部事件的實現類。可以監聽用戶session的開始與結束,用戶請求的到達等等,當事件發生時,會回調監聽器的內部方法。
使用Listener步驟
通過實現具體接口創建實現類(可實現多個監聽器接口)
配置實現類成為監聽器,有兩種配置方式:
直接用@WebListener注解修飾實現類
通過web.xml方式配置,代碼如下:
<listener> <listener-class>com.zrgk.listener.MyListener</lisener-class> </listener>
常用Web事件監聽器接口
1. ServletContextListener
該接口用于監聽Web應用的啟動與關閉
該接口的兩個方法:
contextInitialized(ServletContextEvent event); // 啟動web應用時調用 contextDestroyed(ServletContextEvent event); // 關閉web應用時調用
如何獲得application對象:
ServletContext application = event.getServletContext();
示例:
@WebListener public class MyServetContextListener implements ServletContextListener{ //web應用關閉時調用該方法 @Override public void contextDestroyed(ServletContextEvent event) { ServletContext application = event.getServletContext(); String userName = application.getInitParameter("userName"); System.out.println("關閉web應用的用戶名字為:"+userName); } //web應用啟動時調用該方法 @Override public void contextInitialized(ServletContextEvent event) { ServletContext application = event.getServletContext(); String userName = application.getInitParameter("userName"); System.out.println("啟動web應用的用戶名字為:"+userName); } }
2. ServletContextAttributeListener
該接口用于監聽ServletContext范圍(application)內屬性的改變。
該接口的兩個方法:
attributeAdded(ServletContextAttributeEvent event);//當把一個屬性存進application時觸發 attributeRemoved(ServletContextAttributeEvent event);//當把一個屬性從application刪除時觸發 attributeReplaced(ServletContextAttributeEvent event);//當替換application內的某個屬性值時觸發
如何獲得application對象:
ServletContext application = event.getServletContext();
示例:
@WebListener public class MyServletContextAttributeListener implements ServletContextAttributeListener{ //向application范圍內添加一個屬性時觸發 @Override public void attributeAdded(ServletContextAttributeEvent event) { String name = event.getName();//向application范圍添加的屬性名 Object val = event.getValue(); //向application添加的屬性對應的屬性值 System.out.println("向application范圍內添加了屬性名為:"+name+",屬性值為:"+val+"的屬性"); } //刪除屬性時觸發 @Override public void attributeRemoved(ServletContextAttributeEvent event) { // ... } //替換屬性值時觸發 @Override public void attributeReplaced(ServletContextAttributeEvent event) { // ... } }
感謝各位的閱讀!關于java中listers的使用方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。