spring 定时器
程序员文章站
2022-06-09 10:47:59
...
在工作时有时需要使用到定时器,spring很好的集成了定时器的功能!
在Spring 中使用Quartz,本文介绍Spring3.0以后自主开发的定时任务工具,spring task,可以将它比作一个轻量级的Quartz,而且使用起来很简单,除spring相关的包外不需要额外的包, 下面介绍基于注解的方式。
1.spring.xml文件配置
2.定时器类
@Component
public class ChangeExchangeRate {
@Autowired
private ExchangeRateService exchangeRateService;
//定时器,每个月的1号凌晨0点1分执行
//@Scheduled(cron = "0/5 * * * * ?") //每隔五秒执行
@Scheduled(cron = "0 01 00 01 * ?") //每月1号00:01分触发
public void TaskJob() throws ParseException, IllegalAccessException, InvocationTargetException {
System.out.println(">>>start set exchangeRate value ...");
//逻辑处理代码。。。
System.out.println(">>>end of set exchangeRate value ...");
}
}
参考资料
Spring定时任务的几种实现
Spring中任务调度cronExpression配置说明
QuartZ Cron表达式
上一篇: Easy lot实现mqtt消息通讯
下一篇: Spring定时器