Class WsContextListener
java.lang.Object
org.apache.tomcat.websocket.server.WsContextListener
- All Implemented Interfaces:
ServletContextListener
,EventListener
In normal usage, this
ServletContextListener
does not need to be explicitly configured as the WsSci
performs all the necessary bootstrap and installs this listener in the ServletContext
. If the WsSci
is disabled, this listener must be added manually to every ServletContext
that uses WebSocket to bootstrap
the WsServerContainer
correctly.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Notification that the servlet context is about to be shut down.void
Notification that the web application initialization process is starting.
-
Constructor Details
-
WsContextListener
public WsContextListener()
-
-
Method Details
-
contextInitialized
Description copied from interface:jakarta.servlet.ServletContextListener
Notification that the web application initialization process is starting. All ServletContextListeners are notified of context initialization before any filter or servlet in the web application is initialized. The default implementation is a NO-OP.- Specified by:
contextInitialized
in interfaceServletContextListener
- Parameters:
sce
- Information about the ServletContext that was initialized
-
contextDestroyed
Description copied from interface:jakarta.servlet.ServletContextListener
Notification that the servlet context is about to be shut down. All servlets and filters have been destroyed before any ServletContextListeners are notified of context destruction. The default implementation is a NO-OP.- Specified by:
contextDestroyed
in interfaceServletContextListener
- Parameters:
sce
- Information about the ServletContext that was destroyed
-