文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Spring中的@Scheduled功能怎么使用

2023-06-29 22:30

关注

这篇文章主要介绍“Spring中的@Scheduled功能怎么使用”,在日常操作中,相信很多人在Spring中的@Scheduled功能怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Spring中的@Scheduled功能怎么使用”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

一、Spring @Scheduled Annotation

@ scheduled注释用于任务调度。触发器信息需要与这个注释一起提供。

您可以使用属性 fixedDelay/fixedRate/cron 来提供触发信息。

示例用法如下:

@Scheduled Usages@Scheduled(fixedDelay =30000)public void demoServiceMethod () {... } @Scheduled(fixedRate=30000)public void demoServiceMethod () {... } @Scheduled(cron="0 0 * * * *")public void demoServiceMethod () {... }

1.2 如何启用@Scheduled 注释

要在 spring 应用程序中使用@Scheduled,必须首先在 applicationConfig.xml 文件中定义 xml 名称空间和模式位置定义。还添加任务: 注释驱动,以支持基于注释的任务调度。

applicationConfig.xmlxmlns:task="http://www.springframework.org/schema/task"http://www.springframework.org/schema/task/http://www.springframework.org/schema/task/spring-task-3.0.xsd <task:annotation-driven>

上面的添加是必要的,因为我们将使用基于注释的配置。

1.3 使用@Scheduled 注释

下一步是在类中创建一个类和一个方法,如下所示:

DemoService.javapublic class DemoService{  @Scheduled(cron="*/5 * * * * ?")  public void demoServiceMethod()  {    System.out.println("Method executed at every 5 seconds. Current time is :: "+ new Date());  }}

在上面的例子中

二、固定的延时和频率使用@Scheduled

在这个方法中,fixedDelay 属性与@Scheduled 注释一起使用。

举例:

DemoServiceBasicUsageFixedDelay.javapackage com.howtodoinjava.service; import java.util.Date;import org.springframework.scheduling.annotation.Scheduled; public class DemoServiceBasicUsageFixedDelay{ &nbsp;@Scheduled(fixedDelay = 5000) &nbsp;//@Scheduled(fixedRate = 5000)  //Or use this &nbsp;public void demoServiceMethod()  { &nbsp; &nbsp;System.out.println("Method executed at every 5 seconds. Current time is :: "+ new Date());  }}

应用程序配置如下:

applicationContext.xml< ?xml  version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:task="http://www.springframework.org/schema/task" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    http://www.springframework.org/schema/context/ http://www.springframework.org/schema/context/spring-context.xsd    http://www.springframework.org/schema/util/ http://www.springframework.org/schema/util/spring-util.xsd        http://www.springframework.org/schema/task/ http://www.springframework.org/schema/task/spring-task-3.0.xsd">    <task:annotation-driven />    <bean id="demoServiceBasicUsageFixedDelay" class="com.howtodoinjava.service.DemoServiceBasicUsageFixedDelay"></bean></beans>

三、配合cron表达式使用@Scheduled

在此方法中,cron 属性与@Scheduled 注释一起使用。

举例:

DemoServiceBasicUsageCron.javapackage com.howtodoinjava.service;import java.util.Date;import org.springframework.scheduling.annotation.Scheduled;public class DemoServiceBasicUsageCron{  @Scheduled(cron="*/5 * * * * ?")  public void demoServiceMethod()  {    System.out.println("Method executed at every 5 seconds. Current time is :: "+ new Date());  }}

应用程序配置如下:

applicationContext.xml< ?xml  version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:task="http://www.springframework.org/schema/task" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    http://www.springframework.org/schema/context/ http://www.springframework.org/schema/context/spring-context.xsd    http://www.springframework.org/schema/util/ http://www.springframework.org/schema/util/spring-util.xsd        http://www.springframework.org/schema/task/ http://www.springframework.org/schema/task/spring-task-3.0.xsd">    <task:annotation-driven />    <bean id="demoServiceBasicUsageCron" class="com.howtodoinjava.service.DemoServiceBasicUsageCron"></bean></beans>

四、使用properties文件配置Cron

在这个方法中,cron 属性与@Scheduled 注释一起使用。此属性的值必须是 cron 表达式,如前面的方法所示,但是,此 cron 表达式将在属性文件中定义,相关属性的键将用于@Scheduled 注释。

这将使 cron 表达式与源代码分离,从而使更改变得容易。

DemoServicePropertiesExample.javapackage com.howtodoinjava.service;import java.util.Date;import org.springframework.scheduling.annotation.Scheduled;public class DemoServicePropertiesExample {  @Scheduled(cron = "${cron.expression}")  public void demoServiceMethod()  {    System.out.println("Method executed at every 5 seconds. Current time is :: "+ new Date());  }}

应用程序配置如下:

applicationContext.xml<?xml  version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:task="http://www.springframework.org/schema/task" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    http://www.springframework.org/schema/context/ http://www.springframework.org/schema/context/spring-context.xsd    http://www.springframework.org/schema/util/ http://www.springframework.org/schema/util/spring-util.xsd        http://www.springframework.org/schema/task/ http://www.springframework.org/schema/task/spring-task-3.0.xsd">    <task:annotation-driven />    <util:properties id="applicationProps" location="application.properties" />  <context:property-placeholder properties-ref="applicationProps" />    <bean id="demoServicePropertiesExample" class="com.howtodoinjava.service.DemoServicePropertiesExample"></bean></beans>

五、使用context配置Cron

该方法在属性文件中配置 cron 表达式,在配置文件中使用 cron 表达式的属性键配置作业调度。主要的变化是您不需要在任何方法上使用@Scheduled 注释。方法配置也是在应用程序配置文件中完成的。

举例:

DemoServiceXmlConfig.javapackage com.howtodoinjava.service;import java.util.Date;public class DemoServiceXmlConfig{  public void demoServiceMethod()  {    System.out.println("Method executed at every 5 seconds. Current time is :: "+ new Date());  }}

应用程序配置如下:

applicationContext.xml<?xml  version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:task="http://www.springframework.org/schema/task" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    http://www.springframework.org/schema/context/ http://www.springframework.org/schema/context/spring-context.xsd    http://www.springframework.org/schema/util/ http://www.springframework.org/schema/util/spring-util.xsd        http://www.springframework.org/schema/task/ http://www.springframework.org/schema/task/spring-task-3.0.xsd">    <task:annotation-driven />    <util:properties id="applicationProps" location="application.properties" />  <context:property-placeholder properties-ref="applicationProps" />  <bean id="demoServiceXmlConfig" class="com.howtodoinjava.service.DemoServiceXmlConfig" />  <task:scheduled-tasks>      <task:scheduled ref="demoServiceXmlConfig" method="demoServiceMethod" cron="#{applicationProps['cron.expression']}"></task:scheduled>  </task:scheduled-tasks></beans>

到此,关于“Spring中的@Scheduled功能怎么使用”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯