public class TimerListener implements ServletContextListener
{
private Timer containerTimer = null;
/**
* 定时器的执行
*/
public void contextInitialized(ServletContextEvent e)
{
try
{
e.getServletContext().log("定时器已经启动");
this.containerTimer = new Timer();
this.containerTimer.schedule(BusiContainer.getInstance(),
new Date(), (long) (30 * 1000));//系统从启动开始,每个一个小时执行任务一次
e.getServletContext().log("已经添加任务调度");
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
/**
* 定时器的销毁
* @param e
*/
public void contextDestroyed(ServletContextEvent e)
{
containerTimer.cancel();
e.getServletContext().log("定时器销毁");
}
}
public class BusiContainer extends TimerTask
{
private static BusiContainer busiContainer = null;
private BusiContainer()
{
}
public void run()
{
// try {
// AutoProcessSalesDataByPos salesProcess = new AutoProcessSalesDataByPos();
// salesProcess.dataProcess();
// } catch (Exception e) {
// e.printStackTrace();
// }
//
try
{
System.out.println("线程退货数据开始执行**********************************");
ReturnOrderPosJC returnPos = new ReturnOrderPosJC();
returnPos.dataProcess();
}
catch(Exception e)
{
e.printStackTrace();
}
}
public static BusiContainer getInstance() throws Exception
{
if (busiContainer == null)
{
busiContainer = new BusiContainer();
}
return busiContainer;
}
}
分享到:
相关推荐
Java定时器是Java编程语言中用于执行特定任务的调度工具,它允许程序员在指定的时间间隔后执行特定的代码块或任务。在Java中,我们主要使用`java.util.Timer`类和`java.util.TimerTask`类来实现定时器功能。这两个类...
Java定时器(java.util.Timer)是Java标准库中用于调度任务执行的重要工具,它允许我们按照预设的时间间隔执行特定的任务。在Java程序设计中,定时器常常用于实现周期性的任务,比如定时备份数据、定时检查系统状态...
JAVA定时器,只要服务开启,就能指定某些代码在某个时刻执行,例如:监狱里罪犯的余刑天数,每天都要减少,就可以设置一个定时器在每天的23:59:59来执行减少余刑天数的天。
Java定时器框架Quartz是Java开发中用于任务调度的一个强大工具,它允许开发者精确地控制任务的执行时间,包括一次性任务和周期性任务。Quartz以其灵活性和稳定性,在企业级应用中广泛使用,尤其在需要定期执行后台...