ServletContextListener 的使用。

  1. 实现 ServletContextListener 接口,并复写 contextDestroyed() 、contextInitialized() 。

  2. web.xml 中注册这个监听器。

ServletListener.java

package test;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
public class ServletListener implements ServletContextListener {
 @Override
 public void contextDestroyed(ServletContextEvent arg0) {
  System.out.println("ServletContext容器销毁时调用!");
  
 }
 @Override
 public void contextInitialized(ServletContextEvent arg0) {
  System.out.println("ServletContext容器启动时调用!");
  
 }
}

web.xml

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
 <listener>
  <listener-class>test.ServletListener</listener-class>
 </listener>

</web-app>

你可能感兴趣的:(ServletContextListener 的使用。)