本文介绍了如何在运行Java Web应用程序时调用函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个Java(Netbeans)的Web应用程序。我有一个应该在运行Web应用程序时完全调用的函数,而不是将其放入静态方法 main 。
I have a web application in Java (Netbeans). And I have a function that should be called exactly while running the web application, without putting it into the static method main.
我真的不喜欢我不知道怎么做。
I really don't have any idea about how to do.
提前谢谢你。
推荐答案
创建一个实现ServletConextListener的类:
Create a class that implements ServletConextListener :
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
public class ListenToMeFirst implements ServletContextListener {
@Override
public void contextDestroyed(ServletContextEvent arg0) {
}
@Override
public void contextInitialized(ServletContextEvent arg0) {
// Run me First while deploying!!!
}
}
不要忘了把它放在你的web.xml文件中:
Don't forget to put it in your web.xml file :
<listener>
<listener-class>path.to.yourListenerClass.ListenToMeFirst</listener-class>
</listener>
这篇关于如何在运行Java Web应用程序时调用函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!