`
yantaoguo
  • 浏览: 6990 次
社区版块
存档分类
最新评论

ScheduledExecutorService执行周期任务 (转)

    博客分类:
  • java
阅读更多

这两天 用ScheduledExecutorService定期执行一些任务。查阅相关资料来看这个类怎么用。

 

启动定时任务可以见下面的文章,可是关于启动任务后,怎么随时停止指定的任务,查了查一些资料,原来这么用。

调用 scheduleWithFixedDelay()方法会返回一个Future类型的 返回值。我们可以将该future保存起来。当需要终止某个任务时,将对应的future  取出来,执行 future.cancel(true/false)  即可停止该任务的执行。

 

如果要停掉这个定时服务线程池,可以调用shutdown或shutdownNow。

一个ScheduledExecutorService 执行shutdown后,不能再执行 新的任务了,当前运行的任务继续完成,等待的任务不再执行。再执行新任务时,需要我们 重新创建线程池。

执行shutdownNow会强行关掉正在运行的任务(可能会抛出InterruptedException)及取消等待的任务。不能再执行 新的任务了

 

-------------------------------------下面的转载

 

 

 

 

 

一:简单说明

ScheduleExecutorService接口中有四个重要的方法,其中scheduleAtFixedRate和scheduleWithFixedDelay在实现定时程序时比较方便。

下面是该接口的原型定义

java.util.concurrent.ScheduleExecutorService extends ExecutorService extends Executor

接口scheduleAtFixedRate原型定义及参数说明

  1. public ScheduledFuture<?> scheduleAtFixedRate(Runnable command,  
  2.             long initialDelay,  
  3.             long period,  
  4.             TimeUnit unit);  
 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command,
				long initialDelay,
				long period,
				TimeUnit unit);

command:执行线程
initialDelay:初始化延时
period:两次开始执行最小间隔时间
unit:计时单位

接口scheduleWithFixedDelay原型定义及参数说明

  1. public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,  
  2.                 long initialDelay,  
  3.                 long delay,  
  4.                 TimeUnit unit);  
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
				long initialDelay,
				long delay,
				TimeUnit unit);

command:执行线程
initialDelay:初始化延时
period:前一次执行结束到下一次执行开始的间隔时间(间隔执行延迟时间)
unit:计时单位

二:功能示例

1.按指定频率周期执行某个任务。

初始化延迟0ms开始执行,每隔100ms重新执行一次任务。

  1. /** 
  2.  * 以固定周期频率执行任务 
  3.  */  
  4. public static void executeFixedRate() {  
  5.     ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  
  6.     executor.scheduleAtFixedRate(  
  7.             new EchoServer(),  
  8.             0,  
  9.             100,  
  10.             TimeUnit.MILLISECONDS);  
  11. }  
/**
 * 以固定周期频率执行任务
 */
public static void executeFixedRate() {
	ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);
	executor.scheduleAtFixedRate(
			new EchoServer(),
			0,
			100,
			TimeUnit.MILLISECONDS);
}

间隔指的是连续两次任务开始执行的间隔。

 

2.按指定频率间隔执行某个任务。

初始化时延时0ms开始执行,本次执行结束后延迟100ms开始下次执行。

  1. /** 
  2.  * 以固定延迟时间进行执行 
  3.  * 本次任务执行完成后,需要延迟设定的延迟时间,才会执行新的任务 
  4.  */  
  5. public static void executeFixedDelay() {  
  6.     ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  
  7.     executor.scheduleWithFixedDelay(  
  8.             new EchoServer(),  
  9.             0,  
  10.             100,  
  11.             TimeUnit.MILLISECONDS);  
  12. }  
/**
 * 以固定延迟时间进行执行
 * 本次任务执行完成后,需要延迟设定的延迟时间,才会执行新的任务
 */
public static void executeFixedDelay() {
	ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);
	executor.scheduleWithFixedDelay(
			new EchoServer(),
			0,
			100,
			TimeUnit.MILLISECONDS);
}

3.周期定时执行某个任务。

有时候我们希望一个任务被安排在凌晨3点(访问较少时)周期性的执行一个比较耗费资源的任务,可以使用下面方法设定每天在固定时间执行一次任务。

  1. /** 
  2.  * 每天晚上8点执行一次 
  3.  * 每天定时安排任务进行执行 
  4.  */  
  5. public static void executeEightAtNightPerDay() {  
  6.     ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  
  7.     long oneDay = 24 * 60 * 60 * 1000;  
  8.     long initDelay  = getTimeMillis("20:00:00") - System.currentTimeMillis();  
  9.     initDelay = initDelay > 0 ? initDelay : oneDay + initDelay;  
  10.   
  11.     executor.scheduleAtFixedRate(  
  12.             new EchoServer(),  
  13.             initDelay,  
  14.             oneDay,  
  15.             TimeUnit.MILLISECONDS);  
  16. }  
/**
 * 每天晚上8点执行一次
 * 每天定时安排任务进行执行
 */
public static void executeEightAtNightPerDay() {
	ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);
	long oneDay = 24 * 60 * 60 * 1000;
	long initDelay  = getTimeMillis("20:00:00") - System.currentTimeMillis();
	initDelay = initDelay > 0 ? initDelay : oneDay + initDelay;

	executor.scheduleAtFixedRate(
			new EchoServer(),
			initDelay,
			oneDay,
			TimeUnit.MILLISECONDS);
}
  1. /** 
  2.  * 获取指定时间对应的毫秒数 
  3.  * @param time "HH:mm:ss" 
  4.  * @return 
  5.  */  
  6. private static long getTimeMillis(String time) {  
  7.     try {  
  8.         DateFormat dateFormat = new SimpleDateFormat("yy-MM-dd HH:mm:ss");  
  9.         DateFormat dayFormat = new SimpleDateFormat("yy-MM-dd");  
  10.         Date curDate = dateFormat.parse(dayFormat.format(new Date()) + " " + time);  
  11.         return curDate.getTime();  
  12.     } catch (ParseException e) {  
  13.         e.printStackTrace();  
  14.     }  
  15.     return 0;  
  16. }  
/**
 * 获取指定时间对应的毫秒数
 * @param time "HH:mm:ss"
 * @return
 */
private static long getTimeMillis(String time) {
	try {
		DateFormat dateFormat = new SimpleDateFormat("yy-MM-dd HH:mm:ss");
		DateFormat dayFormat = new SimpleDateFormat("yy-MM-dd");
		Date curDate = dateFormat.parse(dayFormat.format(new Date()) + " " + time);
		return curDate.getTime();
	} catch (ParseException e) {
		e.printStackTrace();
	}
	return 0;
}

4.辅助代码

  1. class EchoServer implements Runnable {  
  2.     @Override  
  3.     public void run() {  
  4.         try {  
  5.             Thread.sleep(50);  
  6.         } catch (InterruptedException e) {  
  7.             e.printStackTrace();  
  8.         }  
  9.         System.out.println("This is a echo server. The current time is " +  
  10.                 System.currentTimeMillis() + ".");  
  11.     }  
  12. }  
class EchoServer implements Runnable {
	@Override
	public void run() {
		try {
			Thread.sleep(50);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		System.out.println("This is a echo server. The current time is " +
				System.currentTimeMillis() + ".");
	}
}

三:一些问题

上面写的内容有不严谨的地方,比如对于scheduleAtFixedRate方法,当我们要执行的任务大于我们指定的执行间隔时会怎么样呢?

对于中文API中的注释,我们可能会被忽悠,认为无论怎么样,它都会按照我们指定的间隔进行执行,其实当执行任务的时间大于我们指定的间隔时间时,它并不会在指定间隔时开辟一个新的线程并发执行这个任务。而是等待该线程执行完毕。

源码注释如下:

 

  1. * Creates and executes a periodic action that becomes enabled first  
  2. * after the given initial delay, and subsequently with the given  
  3. * period; that is executions will commence after  
  4. * <tt>initialDelay</tt> then <tt>initialDelay+period</tt>, then  
  5. * <tt>initialDelay + 2 * period</tt>, and so on.  
  6. * If any execution of the task  
  7. * encounters an exception, subsequent executions are suppressed.  
  8. * Otherwise, the task will only terminate via cancellation or  
  9. * termination of the executor.  If any execution of this task  
  10. * takes longer than its period, then subsequent executions  
  11. * may start late, but will not concurrently execute.  
* Creates and executes a periodic action that becomes enabled first
* after the given initial delay, and subsequently with the given
* period; that is executions will commence after
* <tt>initialDelay</tt> then <tt>initialDelay+period</tt>, then
* <tt>initialDelay + 2 * period</tt>, and so on.
* If any execution of the task
* encounters an exception, subsequent executions are suppressed.
* Otherwise, the task will only terminate via cancellation or
* termination of the executor.  If any execution of this task
* takes longer than its period, then subsequent executions
* may start late, but will not concurrently execute.

根据注释中的内容,我们需要注意的时,我们需要捕获最上层的异常,防止出现异常中止执行,导致周期性的任务不再执行。

四:除了我们自己实现定时任务之外,我们可以使用Spring帮我们完成这样的事情。

Spring自动定时任务配置方法(我们要执行任务的类名为com.study.MyTimedTask)

 

  1. <bean id="myTimedTask" class="com.study.MyTimedTask"/>  
<bean id="myTimedTask" class="com.study.MyTimedTask"/>

 

  1. <bean id="doMyTimedTask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">  
  2.     <property name="targetObject" ref="myTimedTask"/>  
  3.     <property name="targetMethod" value="execute"/>  
  4.     <property name="concurrent" value="false"/>  
  5. </bean>  
<bean id="doMyTimedTask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
	<property name="targetObject" ref="myTimedTask"/>
	<property name="targetMethod" value="execute"/>
	<property name="concurrent" value="false"/>
</bean>

 

  1. <bean id="myTimedTaskTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">  
  2.     <property name="jobDetail" ref="doMyTimedTask"/>  
  3.     <property name="cronExpression" value="0 0 2 * ?"/>  
  4. </bean>  
<bean id="myTimedTaskTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
	<property name="jobDetail" ref="doMyTimedTask"/>
	<property name="cronExpression" value="0 0 2 * ?"/>
</bean>

 

  1. <bean id="doScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
  2.     <property name="triggers">  
  3.         <list>  
  4.             <ref local="myTimedTaskTrigger"/>  
  5.         </list>  
  6.     </property>  
  7. </bean>  
<bean id="doScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
	<property name="triggers">
		<list>
			<ref local="myTimedTaskTrigger"/>
		</list>
	</property>
</bean>

 

  1. <bean id="doScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  
  2.     <property name="triggers">  
  3.         <list>  
  4.             <bean class="org.springframework.scheduling.quartz.CronTriggerBean">  
  5.                 <property name="jobDetail"/>  
  6.                     <bean id="doMyTimedTask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">  
  7.                         <property name="targetObject">  
  8.                             <bean class="com.study.MyTimedTask"/>  
  9.                         </property>  
  10.                         <property name="targetMethod" value="execute"/>  
  11.                         <property name="concurrent" value="false"/>  
  12.                     </bean>  
  13.                 </property>  
  14.                 <property name="cronExpression" value="0 0 2 * ?"/>  
  15.             </bean>  
  16.         </list>  
  17.     </property>  
  18. </bean>  
<bean id="doScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
	<property name="triggers">
		<list>
			<bean class="org.springframework.scheduling.quartz.CronTriggerBean">
				<property name="jobDetail"/>
					<bean id="doMyTimedTask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
						<property name="targetObject">
							<bean class="com.study.MyTimedTask"/>
						</property>
						<property name="targetMethod" value="execute"/>
						<property name="concurrent" value="false"/>
					</bean>
				</property>
				<property name="cronExpression" value="0 0 2 * ?"/>
			</bean>
		</list>
	</property>
</bean>

 

分享到:
评论

相关推荐

    ScheduledExecutorService 计时器任务处理

    ScheduledExecutorService是Java并发编程中一个非常重要的工具类,它属于ExecutorService接口的一个实现,主要用于执行定时或周期性的任务。这个服务提供了强大的定时任务管理能力,可以用来安排在未来某一时刻或者...

    ScheduledExecutorService任务定时代码示例

    这个方法的参数包括初始延迟时间、执行周期和时间单位。在这个示例中,我们设置了初始延迟时间为 0 毫秒,每隔 5 毫秒重新执行一次任务。 fixDelay 方法 fixDelay 方法用于在具体的延迟时间后执行某个任务。在上面...

    6.2 创建定时和周期任务

    4. **ScheduledExecutorService**:这是Java并发库提供的一个强大的定时执行工具,它可以创建一个线程池来执行周期性任务。通过`scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit ...

    使用Timer和TimerTask实现周期任务

    总之,`Timer` 和 `TimerTask` 是 Java 中用于实现周期任务的基础工具,但它们有一定的局限性。在实际开发中,根据项目需求和性能要求,可以考虑使用更高级的并发工具,如 `ScheduledExecutorService`,以获得更好的...

    java实现一个小程序语句的延迟执行的小demo

    此外,`ScheduledExecutorService`还提供了`scheduleAtFixedRate()`和`scheduleWithFixedDelay()`方法,用于周期性地执行任务。前者会在每次任务执行结束与下一次开始之间保持恒定的时间间隔,而后者则是在任务完成...

    java web使用监听器实现定时周期性执行任务demo

    `ScheduledExecutorService`是Java并发库的一部分,可以用来调度周期性的任务执行。创建一个ScheduledExecutorService实例,然后使用`scheduleAtFixedRate`或`scheduleWithFixedDelay`方法设定任务的执行频率。 ...

    Java定时执行某个任务

    `ScheduledExecutorService`提供了更强大的功能,如支持固定延迟执行、周期性执行以及精确到纳秒的调度。以下是一个使用`ScheduledExecutorService`的例子: ```java import java.util.concurrent.Executors; ...

    android 延时或重复执行任务

    `Timer`类是Java提供的一个计时器类,可以用来调度任务在未来某个时间点执行或者周期性地执行。`TimerTask`是实际的任务载体,它继承自`Runnable`。创建`Timer`对象后,通过`schedule(TimerTask task, long delay)`...

    JAVA项目服务器启动时自启动指定的Servlet,并定时执行任务

    在这个例子中,我们在`init()`方法中创建了一个`ScheduledExecutorService`实例,并设置了一个定时任务,它将在服务器启动后每小时执行一次。在`destroy()`方法中,我们关闭了`executor`以释放资源。 总结,通过在`...

    java 定时执行任务

    Java定时执行任务是Java开发中常见的一种需求,用于在特定时间点或按照预设周期执行某段代码。在Java中,有两种主要的方式来实现定时任务:Java.util.Timer类和java.util.concurrent包下的ScheduledExecutorService...

    java每天实现定点执行任务java每天实现定点执行任务

    要实现每天定点执行任务,可以创建一个ScheduledExecutorService实例,然后使用`scheduleAtFixedRate`或`scheduleWithFixedDelay`方法来设置任务的周期性执行。下面是一个简单的例子: ```java import java.util....

    java定时执行多任务和quartz定时执行多任务

    - `java.util.concurrent.ScheduledExecutorService`: 这是Java并发包中的一个接口,提供了更强大的定时任务管理能力,支持定时和定期执行任务。它通过`ScheduledFuture`接口返回的实例可以取消任务或者获取任务...

    TimerTask执行每日定时任务

    这两个类属于`java.util`包,为开发者提供了执行周期性或一次性任务的能力。下面我们将深入探讨如何利用`TimerTask`执行每日定时任务。 首先,`TimerTask`是Java中的一个抽象类,它代表了一个可以被`Timer`对象调度...

    自定义任务执行时间

    在Java编程语言中,"自定义任务执行时间"是一个关键概念,它涉及到如何根据特定需求安排任务在未来的某个时刻或周期性地运行。这通常通过使用定时器(Timer)类和相关的API来实现。让我们深入了解一下Java中的定时...

    Java定时任务及其在工作流系统中的应用.pdf

    周期性的定时任务是指按照固定的时间间隔执行的任务,而非周期性的定时任务是指在特定的时间点执行的任务。 二、Java定时任务的类型 Java提供了多种定时任务机制,包括: * Timer类:Timer类是Java平台提供的最...

    计划任务 定时执行

    例如,在Java中,我们可以使用`java.util.Timer`类或者`ScheduledExecutorService`接口来创建定时任务。这两种方法都可以设定一个延迟或周期,让代码在特定时间点或每隔一定时间执行。 在Python中,可以使用`...

    Springmvc java注解设置定时任务实例

    `ScheduledExecutorService`是Java并发包`java.util.concurrent`中的一个接口,它提供了延迟执行和周期性执行任务的能力。 首先,我们需要在Spring配置类中配置一个`TaskScheduler`,这是Spring提供的一个接口,...

    Spring定时任务实现(非Web项目)

    3. **ThreadPoolTaskScheduler**:这是Spring提供的定时任务调度器,它可以基于Java的`ScheduledExecutorService`来执行周期性的任务。 4. **@Scheduled**:这是一个注解,用于标记需要定时执行的方法。 在非Web...

    Android定时执行任务总结demo

    - 对于短周期或频繁的任务,推荐使用`Handler`或`ScheduledExecutorService`,它们在应用运行时有效,但设备休眠时不会执行。 - 为了提高用户体验和避免不必要的唤醒,确保只在必要时启动定时任务,并在任务完成后...

    java定时器(定时任务)

    - 与 `Timer` 不同,`ScheduledExecutorService` 在任务出现异常时不会停止整个服务,而是仅取消当前任务,使得其他任务可以继续执行。 - 当不再需要定时任务时,可以通过 `shutdown()` 或 `shutdownNow()` 方法...

Global site tag (gtag.js) - Google Analytics