如何在tomcat启动的时候运行一个Java类

2024-12-31 07:53:27
推荐回答(1个)
回答1:

ServletContextListener 实现该接口即可

在应用启动时以下方法会被调用:
void contextInitialized(ServletContextEvent sce);

在应用注销时以下方法会被调用:
void contextDestoryd(ServletContextEvent sce);

在Web.xml中加入

完整类名(如com.myweb.listener.InitListener)