如何在tomcat启动的时候运行一个Java类
展开全部
ServletContextListener 实现该接口即可
在应用启动时以下方法会被调用:
void contextInitialized(ServletContextEvent sce);
在应用注销时以下方法会被调用:
void contextDestoryd(ServletContextEvent sce);
在Web.xml中加入
<listener>
<listener-class>完整类名(如com.myweb.listener.InitListener)</listener-class>
</listener>
在应用启动时以下方法会被调用:
void contextInitialized(ServletContextEvent sce);
在应用注销时以下方法会被调用:
void contextDestoryd(ServletContextEvent sce);
在Web.xml中加入
<listener>
<listener-class>完整类名(如com.myweb.listener.InitListener)</listener-class>
</listener>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询