パッケージ jakarta.servlet

インターフェース ServletContextAttributeListener

  • すべてのスーパーインターフェース:
    EventListenerSE

    public interface ServletContextAttributeListener
    extends EventListenerSE
    ServletContext 属性の変更に関する通知イベントを受信するためのインターフェース。

    これらの通知イベントを受信するには、実装クラスを Web アプリケーションの デプロイ記述子で宣言するか、WebListener でアノテーションを付ける、または ServletContext で定義された addListener メソッドのいずれかを使用して登録する必要があります。

    このインターフェースの実装が呼び出される順序は指定されていません。

    導入:
    Servlet 2.3
    関連事項:
    ServletContextAttributeEvent
    • メソッドの詳細

      • attributeAdded

        default void attributeAdded​(ServletContextAttributeEvent event)
        ServletContext に属性が追加されたという通知を受け取ります。
        パラメーター:
        event - 属性が追加された ServletContext を含む ServletContextAttributeEvent、および属性名と値
      • attributeRemoved

        default void attributeRemoved​(ServletContextAttributeEvent event)
        ServletContext から属性が削除されたという通知を受け取ります。
        パラメーター:
        event - 属性が削除された ServletContext を含む ServletContextAttributeEvent、および属性名と値
      • attributeReplaced

        default void attributeReplaced​(ServletContextAttributeEvent event)
        ServletContext で属性が置き換えられたという通知を受け取ります。
        パラメーター:
        event - 属性が置換された ServletContext を含む ServletContextAttributeEvent、および属性名とその古い値