ServletContextListener 实现该接口即可在应用启动时以下方法会被调用:void contextInitialized(ServletContextEvent sce); 在应用注销时以下方法会被调用:void contextDestoryd(ServletContextEvent sce); 在Web.xml中加入 完整类名(如com.myweb.listener.InitListener)