当前页面:
在线文档首页 >
Java Platform, Enterprise Edition v1.3.1 API Specifications
Java 2 Platform EE v1.3: Interface ServletContextListener - Java Platform, Enterprise Edition v1.3.1 API Specifications
javax.servlet
Interface ServletContextListener
- All Superinterfaces:
- java.util.EventListener
- public interface ServletContextListener
- extends java.util.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:
ServletContextEvent
contextInitialized
public void contextInitialized(ServletContextEvent sce)
- Notification that the web application is ready to process requests.
contextDestroyed
public void contextDestroyed(ServletContextEvent sce)
- Notification that the servlet context is about to be shut down.