博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springboot-定时任务-单线程
阅读量:4881 次
发布时间:2019-06-11

本文共 807 字,大约阅读时间需要 2 分钟。

import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.scheduling.annotation.EnableScheduling;import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereotype.Component;@Component@EnableSchedulingpublic class ScheduledService {	private Logger logger = LoggerFactory.getLogger(ScheduledService.class);	@Scheduled(cron = "0/5 * * * * *")	public void scheduled() {		logger.info("=====>>>>>使用cron  {}", System.currentTimeMillis());	}	@Scheduled(fixedRate = 5000)	public void scheduled1() {		logger.info("=====>>>>>使用fixedRate{}", System.currentTimeMillis());	}	@Scheduled(fixedDelay = 5000)	public void scheduled2() {		logger.info("=====>>>>>fixedDelay{}", System.currentTimeMillis());	}}

  

转载于:https://www.cnblogs.com/lichangyunnianxue/p/9771497.html

你可能感兴趣的文章
泛型擦除
查看>>
jQuery控制form表单元素聚焦
查看>>
wpf+.net 4.5 surface2.0 = 异步多点触控 时间轴 part1
查看>>
[android]不解锁刷机
查看>>
Ural1519 Formula 1
查看>>
SQLite笔记
查看>>
SQL Server 收缩日志
查看>>
安装ubuntu10.10后,如何配置一个Apache+MySQL+PHP环境
查看>>
UIAlertView、 UIActionSheet
查看>>
TinyWS —— 一个C++写的简易WEB服务器(三)
查看>>
jsp+struts2登录框架模板
查看>>
Java安装
查看>>
luogu P3410 拍照
查看>>
Mysql单表查询(胖胖老师)
查看>>
Linux的基本命令(CentOS)
查看>>
超链接的几个样式
查看>>
asp.net mvc验证特性
查看>>
接口interface和抽象类型abstract
查看>>
【高精度】贝贝与国王
查看>>
Math
查看>>