任务定时器

  1. Create the Task Listener

    MyContextListener.java

    public class MyContextListener implements ServletContextListener
    {
    	private java.util.Timer timer = null;
    
    	public void contextInitialized(ServletContextEvent event)
    	{
    		timer = new java.util.Timer(true);
    		event.getServletContext().log("Timer start");
    		timer.schedule(new MyTask(event.getServletContext()), 0, 60 * 1000);
    		event.getServletContext().log("Add task okay");
    	}
    
    	public void contextDestroyed(ServletContextEvent event)
    	{
    		timer.cancel();
    		event.getServletContext().log("Timer destory");
    	}
    }
  2. Process the Task

    MyTask.java

    public class MyTask extends TimerTask
    {
    	private static final int C_SCHEDULE_HOUR = 0;
    	private static boolean isRunning = false;
    	private ServletContext context = null;
    
    	public MyTask(ServletContext context) 
    	{
    		this.context = context;
    	}
    
    	public void run()
    	{
    		Calendar cal = Calendar.getInstance();
    		if(!isRunning)
    		{
    			if(C_SCHEDULE_HOUR == cal.get(Calendar.HOUR_OF_DAY))
    			{
    				isRunning = true;
    				context.log("begin to process the task");
    
    				// TODO Add the task here
    				int i = 0;
    				while(i++ < 10)
    				{
    					context.log("Complete: " + i + "/" + 10);
    				}
    
    				isRunning = false;
    				context.log("Task processed okay");
    			}
    		}
    		else
    		{
    			context.log("One Task is running");
    		}
    	}
    }
  3. Add Listener to program

    web.xml

    <listener>
    	<listener-class>MyContextListener</listener-class>
    </listener>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值