Spring系列十三:Spring @Scheduled注解

2019/10/28 Spring

唯将终夜长开眼,报答平生未展眉。

https://raw.githubusercontent.com/longfeizheng/longfeizheng.github.io/master/images/spring/spring17.jpg

概述

Spring使用@Scheduled注解为基于cron表达式的任务调度和异步方法执行提供了出色的支持。可以将@Scheduled注解与触发器元数据一起添加到方法中。

在本文中,我们将展示以4种不同方式使用@Scheduled功能的方法。

@Scheduled注解概述

@Scheduled注解用于任务调度。触发器信息需要与此注解一起提供。可以使用属性fixedDelay/fixedRate/cron来提供触发信息。

  1. fixedRate使Spring定期运行任务,即使最后一次调用可能仍在运行。
  2. fixedDelay专门控制最后一次执行结束时的下一次执行时间。
  3. cron是源自Unix cron实用程序的功能,根据你的要求有多种选择。
@Scheduled(fixedDelay =30000)
public void demoServiceMethod () {... }
 
@Scheduled(fixedRate=30000)
public void demoServiceMethod () {... }
 
@Scheduled(cron="0 0 * * * *")
public void demoServiceMethod () {... }

启用@Scheduled注解

要在Spring应用程序中使用@Scheduled,必须首先在applicationConfig.xml文件中定义以下xml命名空间和模式位置定义。还添加task:annotation-driven以启用基于注释的任务计划。

xmlns: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>

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

使用@Scheduled注解

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

public class DemoService
{
    @Scheduled(cron="*/5 * * * * ?")
    public void demoServiceMethod()
    {
        System.out.println("Method executed at every 5 seconds. Current time is :: "+ new Date());
    }
}
  1. 使用@Scheduled注解将使Spring容器理解该注解下面的方法将作为作业运行。
  2. 请记住,用@Scheduled注解的方法不应将参数传递给它们。
  3. 他们也不应返回任何值。
  4. 如果要在@Scheduled方法中使用外部对象,则应使用自动装配将它们注入到DemoService类中,而不要将其作为参数传递给@Scheduled方法。

使用@Scheduled注解中的fixedDelay属性

在此方法中,fixedDelay属性与@Scheduled注解一起使用。也可以使用fixedRate

示例类如下所示:

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

应用程序配置如下所示:

< ?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="cn.howtodoinjava.service.DemoServiceBasicUsageFixedDelay"></bean>
 
</beans>

使用属性文件的cron表达式

在此方法中,cron属性与@Scheduled注解一起使用。这个属性的值必须是一个cron表达式,但是,这个cron表达式将在一个属性文件中定义,并且相关属性的键将在@Scheduled注解中使用。

这将从源代码中解耦cron表达式,从而使更改变得容易。

package cn.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());
    }
 
}

应用程序配置如下所示:

<?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="cn.howtodoinjava.service.DemoServicePropertiesExample"></bean>
 
</beans>

application.properties 如下:

corn.expression = */5 * * * * ?

在上下文配置中使用cron表达式

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

示例类如下所示:

package cn.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());
    }
 
}

应用程序配置如下所示:

<?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="cn.howtodoinjava.service.DemoServiceXmlConfig" />
 
    <task:scheduled-tasks>
        <task:scheduled ref="demoServiceXmlConfig" method="demoServiceMethod" cron="#{applicationProps['cron.expression']}"></task:scheduled>
    </task:scheduled-tasks>
 
</beans>

application.properties 如下:

corn.expression = */5 * * * * ?

https://niocoder.com/assets/images/qrcode.jpg

🙂🙂🙂关注微信公众号java干货 不定期分享干货资料

原文链接:Spring @Required Annotation

Show Disqus Comments

Search

    Post Directory