91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中listers的使用方法

發布時間:2020-09-17 10:01:14 來源:億速云 閱讀:134 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關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的使用方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

赤壁市| 泰安市| 九江市| 昌图县| 长沙县| 安顺市| 眉山市| 休宁县| 隆尧县| 中江县| 阜南县| 仲巴县| 东光县| 隆德县| 无为县| 凭祥市| 新源县| 伊吾县| 津南区| 金华市| 佳木斯市| 嵩明县| 临泽县| 玉田县| 五莲县| 新建县| 大石桥市| 阳高县| 淳化县| 万山特区| 新密市| 吉安县| 环江| 西充县| 绥中县| 丰镇市| 绵阳市| 台安县| 大英县| 顺义区| 米易县|