我已经在 ServletContextListener 中调用了一个方法作为线程..现在根据我的需要,我必须将线程延迟 1 分钟,然后开始执行线程中调用的方法,但我不能这样做,因为我在这方面很新...
这是我的代码...
public class Startup implements ServletContextListener {
@Override
public void contextDestroyed(ServletContextEvent sce) {
}
public void contextInitialized(ServletContextEvent sce) {
// Do your startup work here
System.out.println("Started....");
//captureCDRProcess();
new Thread(new Runnable() {
@Override
public void run() {
captureCDRProcess();
}
}).start();
}
请帮助我..提前谢谢..