あなたは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
}
}
そして、あなたはあなたが「のServletContextListener」と呼ばれるものを探しているあなたの配備記述子web.xmlに
<listener>
<listener-class>
mypackage.MyServletContextListener
</listener-class>
</listener>
を、それを構成する必要がある、それはあなたが必要なメソッドを持っています。 –
https://stackoverflow.com/questions/3468150/using-special-auto-start-servlet-to-initialize-on-startup-and-share-application – rogerdpack