我想让tomcat启动完毕后,自动执行一些初始化操作。
这些操作必须要在有用户登录前完成。
先谢谢各位大哥大姐了
我想让tomcat启动完毕后,自动执行一些初始化操作。
这些操作必须要在有用户登录前完成。
先谢谢各位大哥大姐了
可以添加Tomcat的 listener
在web.xml中添加listener节点
[code="xml"]
com.PreloadListener
[/code]
java代码:
[code="java"]
public class PreloadListener implements ServletContextListener{
public void contextInitialized (ServeltContextEvent sce){
//init operation
}
public void contextDestoryed (ServeltContextEvent sce){
//destory operation
}
}
[/code]