spring怎样设置动态定时任务

spring怎样设置动态定时任务,第1张

在spring 中 基于注解的 定时配置很简单,只需要三步哦,如下: 1、在类名前加@Component注解,标记该bean,也就是配置扫描标记。 2、在该类下的方法前加定是配置注解,@Schedule("cron= 0/30 * * * * *")。 3、添加配置文件(如下)。

mponent

@Configurable

@EnableScheduling

public class ScheduledTasks{

@Scheduled(fixedRate = 1000 * 30)

public void reportCurrentTime(){

System.out.println ("Scheduling Tasks Examples: The time is now " + dateFormat ().format (new Date ()))

}


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存