spring实现动态定时任务

spring实现动态定时任务,第1张

spring实现定时任务的方式主要有两种

@EnableScheduling直接配置在springboot启动类上是全局配置,所有定时任务方法都会生效;@EnableScheduling只配置在某个定时任务类时,只有当前类中的定时任务才会生效。

也可以通过$占位符从配置文件中解析cron表达式

效果如图

1.创建任务接口BaseTask类,并继承Runnable接口

2.创建两个任务接口BaseTask的实现类

3.创建定时任务配置类ScheduleConfig实现SchedulingConfigurer接口

效果如图

在Java中有三种实现定时任务的方式:1.java自带的API java.util.Timer类 java.util.TimerTask类 。2. Quartz框架 开源 功能强大 使用起来稍显复杂. 3.Spring 3.0以后自带了 task 调度工具,比Quartz更加的简单方便.

Spring从3.0后自带了task调度工具,不需要引入其他的第三方依赖。在启动类上添加 @EnableScheduling 注解

ScheduleTask.java

在需要定时执行的方法上添加 @Scheduled 注解并指定cron的值,上面的这个例子让打印语句每天凌晨两点执行一次。

这个注解标记了一个将要被定时执行的方法, cron fixedDelay fixedRate 三个属性必选其一。

被注解的方法不能传入参数,通常有一个 void 的返回值,如果不是,返回值将会被忽略。

cron 是一个类似cron的表达式,可以指定秒、分、时、一个月的第几天、月、一周的星期几。例如,"0 * * * * MON-FRI"表示工作日的每一分钟都执行。

zone 指定了cron表达式的时区。如果未指定,则是服务器的默认时区。

fixedDelay :执行注解方法的固定的毫秒数间隔,这个间隔是指上一次调用的结束和下一次调用的开始的时间。

fixedRate :执行注解方法的固定的毫秒数间隔,这个间隔是指每次调用之间的时间。与上面的区别是:fixedDelay是前一个方法执行完毕后的固定时间再执行下一个方法,fixedRate是上一个方法开始执行固定时间后执行下一个方法。

cron表达式可以分为两种:

1、6位长度的秒 分 时 日 月 星期

2、7位长度的秒 分 时 日 月 星期 年

一般都是用6位长度的。

秒:可出现 , - * / 四个字符,有效范围为0-59的整数

分:可出现 ,- * / 四个字符,有效范围为0-59的整数

时:可出现 ,- * / 四个字符,有效范围为0-23的整数

日:可出现 ,- * / ? L W C 八个字符,有效范围为0-31的整数

月:可出现 ,- * / 四个字符,有效范围为1-12的整数或JAN-DEC

星期:可出现 ,- * / ? L C # 八个字符,有效范围为1-7的整数或SUN-SAT两个范围。1表示星期天

年:可出现 ,- * / 四个字符,有效范围为1970-2099年

(1)*:表示匹配该域的任意值,假如在Minutes域使用*,即表示每分钟都会触发事件。

(2)?:只能用在DayofMonth和DayofWeek两个域。它也匹配域的任意值,但实际不会。因为DayofMonth和DayofWeek会相互影响。

例如想在每月的20日触发调度,不管20日到底是星期几,则只能使用如下写法: 13 13 15 20 * ?,其中最后一位只能用?,而不能使用*,如果使用*表示不管星期几都会触发,实际上并不是这样。

(3)-:表示范围,例如在Minutes域使用5-20,表示从5分到20分钟每分钟触发一次

(4)/:表示起始时间开始触发,然后每隔固定时间触发一次,例如在Minutes域使用5/20,则意味着5分钟触发一次,而25,45等分别触发一次.

(5),:表示列出枚举值值。例如:在Minutes域使用5,20,则意味着在5和20分每分钟触发一次。

(6)L:表示最后,只能出现在DayofWeek和DayofMonth域,如果在DayofWeek域使用5L,意味着在最后的一个星期四触发。

(7)W:表示有效工作日(周一到周五),只能出现在DayofMonth域,系统将在离指定日期的最近的有效工作日触发事件。

例如:在DayofMonth使用5W,如果5日是星期六,则将在最近的工作日:星期五,即4日触发。如果5日是星期天,则在6日触发;

如果5日在星期一到星期五中的一天,则就在5日触发。另外一点,W的最近寻找不会跨过月份

(8)LW:这两个字符可以连用,表示在某个月最后一个工作日,即最后一个星期五。

(9)#:用于确定每个月第几个星期几,只能出现在DayofMonth域。例如在4#2,表示某月的第二个星期三。

有时候需要执行的定时任务会很多,如果是串行执行会带来一些问题,比如一个很耗时的任务阻塞住了,一些需要短周期循环执行的任务也会卡住,所以可以配置一个线程池来并行执行定时任务。

有两种配置方式,一种是写一个配置类创建一个线程池,另一种是在yml文件中进行配置创建线程池。

配置文件的方式:

在spring 中 基于注解的 定时配置很简单,只需要三步哦,如下:

1、在类名前加@Component注解,标记该bean,也就是配置扫描标记。

2、在该类下的方法前加定是配置注解,@Schedule("cron= 0/30 * * * * *")。

3、添加配置文件(如下)。

实例如下:

1、class源文件。

package com.iss.ole.cggl.quartz

import org.springframework.scheduling.annotation.Scheduled

/**

* @function 订单计算 定时任务

*1、试制订单定时计算

*a、车型拆分成零件需求

*b、需求生成订单明细

*2、试装订单定时计算

*3、工料废订单定时计算

* @author zhoujian

* @date 2014/10/29

*/

@Component

public class Quartz extends Base<a href="https://www.baidu.com/s?wd=Biz&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1d9mhNhPj0kPhcYmhuhnH9W0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EPW6kPWbkn1nknj0dPWDzPWbz" target="_blank" class="baidu-highlight">Biz</a>{

/** 车型拆分 成零件 <a href="https://www.baidu.com/s?wd=BIZ&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1d9mhNhPj0kPhcYmhuhnH9W0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EPW6kPWbkn1nknj0dPWDzPWbz" target="_blank" class="baidu-highlight">BIZ</a>*/

private PlanManager<a href="https://www.baidu.com/s?wd=Biz&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1d9mhNhPj0kPhcYmhuhnH9W0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6KdThsqpZwYTjCEQLGCpyw9Uz4Bmy-bIi4WUvYETgN-TLwGUv3EPW6kPWbkn1nknj0dPWDzPWbz" target="_blank" class="baidu-highlight">Biz</a>planManagerBiz

/** 车型拆分为毛需求 */

@Scheduled(cron="0 0 06 * * ? ")

public void convertVehicleToParts() {

try {

planManagerBiz.createPartsList()

} catch (BaseException e) {

logger.error("")

e.printStackTrace()

}

}

public PlanManagerBiz getPlanManagerBiz() {

return planManagerBiz

}

public void setPlanManagerBiz(PlanManagerBiz planManagerBiz) {

this.planManagerBiz = planManagerBiz

}

}

2、配置文件

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="<a href="http://www.springframework.org/schema/beans" " target="_blank">http://www.springframework.org/schema/beans" </a>

xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance" " target="_blank">http://www.w3.org/2001/XMLSchema-instance" </a>

xmlns:context="<a href="http://www.springframework.org/schema/context"" target="_blank">http://www.springframework.org/schema/context"</a>

xmlns:p="<a href="http://www.springframework.org/schema/p" " target="_blank">http://www.springframework.org/schema/p" </a>

xmlns:task="<a href="http://www.springframework.org/schema/task"" target="_blank">http://www.springframework.org/schema/task"</a>

xmlns:tx="<a href="http://www.springframework.org/schema/tx"" target="_blank">http://www.springframework.org/schema/tx"</a>

xmlns:aop="<a href="http://www.springframework.org/schema/aop" " target="_blank">http://www.springframework.org/schema/aop" </a>

xsi:schemaLocation="<a href="http://www.springframework.org/schema/beans " target="_blank">http://www.springframework.org/schema/beans </a>

<a href="http://www.springframework.org/schema/beans/spring-beans-3.0.xsd" target="_blank">http://www.springframework.org/schema/beans/spring-beans-3.0.xsd</a>

<a href="http://www.springframework.org/schema/context " target="_blank">http://www.springframework.org/schema/context </a>

<a href="http://www.springframework.org/schema/context/spring-context-3.0.xsd" target="_blank">http://www.springframework.org/schema/context/spring-context-3.0.xsd</a>

<a href="http://www.springframework.org/schema/tx " target="_blank">http://www.springframework.org/schema/tx </a>

<a href="http://www.springframework.org/schema/tx/spring-tx-3.0.xsd" target="_blank">http://www.springframework.org/schema/tx/spring-tx-3.0.xsd</a>

<a href="http://www.springframework.org/schema/task" target="_blank">http://www.springframework.org/schema/task</a>

<a href="http://www.springframework.org/schema/task/spring-task-3.0.xsd" target="_blank">http://www.springframework.org/schema/task/spring-task-3.0.xsd</a>

<a href="http://www.springframework.org/schema/aop " target="_blank">http://www.springframework.org/schema/aop </a>

<a href="http://www.springframework.org/schema/aop/spring-aop-3.0.xsd " target="_blank">http://www.springframework.org/schema/aop/spring-aop-3.0.xsd </a>

">

<!-- 扫描有相关标记的bean,初始化,交给spring管理-->

<context:component-scan base-package="com.iss.ole.cggl.quartz" />

<!-- 注入属性-->

<bean id="quartz" class="com.iss.ole.cggl.quartz.Quartz">

<property name="planManagerBiz">

<ref bean="planManagerBiz"/>

</property>

</bean>

</beans>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11792538.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存