web中TImer定时器的使用(web.xml)

1操作类

 package com;

import java.util.TimerTask;

public class JinTask extends TimerTask {

 public void run() {
     //可以定义自己要处理的方法
     System.out.println("开始执行了!!!!");
     System.out.println(System.currentTimeMillis());

  }

 

}
2定时器监听类

package com;
import java.util.Calendar;
import java.util.GregorianCalendar;
import java.util.Timer;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;


public class JinListener implements ServletContextListener {
//Fields
private Log logger = LogFactory.getLog(this.getClass()); //日志
private static Timer timer;
private static DeleteImageTask task = new JinTask();


public void contextDestroyed(ServletContextEvent arg0) {
   logger.debug("调用contextDestroyed方法");
   if (timer != null) {  
            timer.cancel();  
            logger.debug("Timer Canceled");  
        }  
   //timer.schedule(task, 0, 100);
   logger.debug("contextDestroyed方法执行完成");

}


public void contextInitialized(ServletContextEvent arg0) {
   logger.debug("调用contextInitialized方法");
        try {  
           
            timer = new Timer(true);  
            GregorianCalendar now = new GregorianCalendar();  
            //每天9:22执行   Calendar.DAY_OF_YEAR(一年中第一天的值为 1)
            //HOUR_OF_DAY( 用于 24 小时制时钟)
            //WEEK_OF_YEAR(第一个星期为1)
            now.set(Calendar.HOUR_OF_DAY, 9);
            now.set(Calendar.MINUTE, 22);
            now.set(Calendar.SECOND, 0);
            timer.schedule(task, now.getTime());
    
        } catch (Exception e) {  
            e.printStackTrace();  
            logger.error("Unable to initialize Schedule.");    
        }
   logger.debug("contextInitialized方法执行完成");

}
}

3web.xml中的配置

<listener>
   <listener-class>
    com.JinListener
   </listener-class>
</listener>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值