javax.servlet

Interface ServletContextListener

public interface ServletContextListener extends 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: Servlet 2.3

Version: $Rev: 46019 $ $Date: 2005/03/15 10:03:20 $

See Also:

Method Summary
voidcontextDestroyed(ServletContextEvent sce)
Notification that the servlet context is about to be shut down.
voidcontextInitialized(ServletContextEvent sce)
Notification that the web application initialization process is starting.

Method Detail

contextDestroyed

public void contextDestroyed(ServletContextEvent sce)
Notification that the servlet context is about to be shut down. All servlets have been destroy()ed before any ServletContextListeners are notified of context destruction.

contextInitialized

public void contextInitialized(ServletContextEvent sce)
Notification that the web application initialization process is starting. All ServletContextListeners are notified of context initialisation before any filter or servlet in the web application is initialized.
Copyright © 2004 Mortbay Consulting Pty. Ltd. All Rights Reserved.