我有一个可以设置处理时间的应用。问题是当我更新时间时,处理会增加。例如: 最初计时器从上午07:00开始 比方说,我将计时器更新到上午08:00,然后第二天更新,程序将在上午07:00和上午08:00再次运行。 (07:00 AM仍在调度程序中,如何删除07:00 AM?) 如何使调度程序仅在第二天的08:00运行?
public void setKonfigurasi(String name, String value) {
log.info(SERVLET_NAME + "Entering setKonfigurasi");
amBean.setParam(name,value); //update the time into database
//name = 'processFileConf|kodPT|userA|20140312 08:30 AM'
// reschedule timer after configured by user
try {
String kodPT = name.substring(name.indexOf("|") + 1, name.indexOf("|",name.indexOf("|") + 1));
String configStr = value.substring(2); //get the new time
String currentStr = CommonUtil.getCurrentDate();
DateFormat dateformat = new SimpleDateFormat("dd/MM/yyyy KK:mm:ss a");
Date currentDate=new Date() ;
Date configDate = dateformat.parse(currentStr+" "+configStr);
long config = configDate.getTime();
long current = currentDate.getTime();
// today
long delay = config-current;
if (delay < 0)
// tomorrow
delay += (1000*60*60*24);
// create the timer and timer task objects
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
public void run() {
System.out.println("showtime for "+kodPT);
processFile("auto"+kodPT);
}
}, delay, 1000*60*60*24);
ServletContextEvent servletContextEvent = EtServletContextListener.getContext();
ServletContext servletContext = servletContextEvent.getServletContext();
servletContext.removeAttribute ("timer");
servletContext.setAttribute ("timer", timer);
} catch (Exception e) {
log.error("Exception on date format : "+e.getMessage());
}
log.info(SERVLET_NAME + "Exiting setKonfigurasi");
}
答案 0 :(得分:0)
您需要在之前的计时器上调用cancel()
并创建一个新计时器。 javadoc说:
终止此计时器,丢弃当前计划的任何任务。是否 不干扰当前正在执行的任务(如果存在)。一旦 计时器已终止,其执行线程正常终止, 并且不再安排任何任务。
答案 1 :(得分:0)
我发现了如何做我想做的事。我们应该使用javax.ejb.Timer而不是使用java.util.Timer创建计时器,因为ejb中的Timer有一个信息来识别每个计时器。 Timer Service EJB