Package javax.servlet
Interface ServletContextListener
- All Superinterfaces:
EventListener
Implementations of this interface recieve notifications about changes to the servlet context of the web application they are part of.
To recieve notification events, the implementation class
must be configured in the deployment descriptor for the web application.
- Since:
- v 2.3
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Notification that the servlet context is about to be shut down.void
Notification that the web application is ready to process requests.
-
Method Details
-
contextInitialized
Notification that the web application is ready to process requests. -
contextDestroyed
Notification that the servlet context is about to be shut down.
-