10

可能重复:
tomcat 自动启动 servlet
如何在 tomcat 服务器启动时加载 java 类(不是 servlet)

我在 Tomcat 服务器上运行了 Web 应用程序。我想在 Tomcat 启动或部署此应用程序时在我的应用程序中运行特定代码。我怎样才能实现它?谢谢

4

1 回答 1

33

您需要实现 ServletContextListner 接口并在其中编写要在 tomcat 启动时执行的代码。

以下是关于它的简要说明。

ServletContextListner 在 javax.servlet 包内。

这是有关如何执行此操作的简短代码。

public class MyServletContextListener implements ServletContextListener {

  @Override
  public void contextDestroyed(ServletContextEvent arg0) {
    //Notification that the servlet context is about to be shut down.   
  }

  @Override
  public void contextInitialized(ServletContextEvent arg0) {
    // do all the tasks that you need to perform just after the server starts

    //Notification that the web application initialization process is starting
  }

}

您需要在部署描述符 web.xml 中配置它

<listener>
    <listener-class>
        mypackage.MyServletContextListener
    </listener-class>
</listener>
于 2012-12-11T11:54:47.373 回答