使用SpringBoot建立定時任務很是簡單,目前主要有如下三種建立方式:
1、基於註解(@Scheduled)
2、基於接口(SchedulingConfigurer) 前者相信你們都很熟悉,可是實際使用中咱們每每想從數據庫中讀取指定時間來動態執行定時任務,這時候基於接口的定時任務就派上用場了。
3、基於註解設定多線程定時任務
使用SpringBoot基於註解來建立定時任務很是簡單,只需幾行代碼即可完成。 代碼以下:html
@Component @Configuration //1.主要用於標記配置類,兼備Component的效果。 @EnableScheduling // 2.開啓定時任務 public class SaticScheduleTask { //3.添加定時任務 @Scheduled(cron = "0/5 * * * * ?") //或直接指定時間間隔,例如:5秒 //@Scheduled(fixedRate=5000) private void configureTasks() { System.err.println("執行靜態定時任務時間: " + LocalDateTime.now()); } }
關於Cron表達式介紹java
cronExpression定義時間規則,Cron表達式由6或7個空格分隔的時間字段組成:秒 分鐘 小時 日期 月份 星期 年(可選)mysql
字段 容許值 容許的特殊字符 秒 0-59 , - * / 分 0-59 , - * / 小時 0-23 , - * / 日期 1-31 , - * ? / L W C 月份 1-12 , - * / 星期 1-7 , - * ? / L C # 年 1970-2099 , - * /
關於Cron表達式的介紹來源:git
http://blog.csdn.net/supingemail/article/details/22274279github
表達式網站生成:web
http://cron.qqe2.com/ 直接點擊spring
基於接口(SchedulingConfigurer)sql
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>2.0.4.RELEASE</version> </parent> <dependencies> <dependency><!--添加Web依賴 --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency><!--添加MySql依賴 --> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <dependency><!--添加Mybatis依賴 配置mybatis的一些初始化的東西--> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.1</version> </dependency> <dependency><!-- 添加mybatis依賴 --> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.4.5</version> <scope>compile</scope> </dependency> </dependencies>
開啓本地數據庫mysql,隨便打開查詢窗口,而後執行腳本內容,以下:數據庫
DROP DATABASE IF EXISTS `socks`; CREATE DATABASE `socks`; USE `SOCKS`; DROP TABLE IF EXISTS `cron`; CREATE TABLE `cron` ( `cron_id` varchar(30) NOT NULL PRIMARY KEY, `cron` varchar(30) NOT NULL ); INSERT INTO `cron` VALUES ('1', '0/5 * * * * ?');
而後在項目中的application.yml 添加數據源:springboot
spring: datasource: url: jdbc:mysql://localhost:3306/socks username: root password: 123456
數據庫準備好數據以後,咱們編寫定時任務,注意這裏添加的是TriggerTask,目的是循環讀取咱們在數據庫設置好的執行週期,以及執行相關定時任務的內容。
具體代碼以下:
@Component @Configuration //1.主要用於標記配置類,兼備Component的效果。 @EnableScheduling // 2.開啓定時任務 public class DynamicScheduleTask implements SchedulingConfigurer { @Mapper public interface CronMapper { @Select("select cron from cron limit 1") public String getCron(); } @Autowired //注入mapper @SuppressWarnings("all") CronMapper cronMapper; /** * 執行定時任務. */ @Override public void configureTasks(ScheduledTaskRegistrar taskRegistrar) { taskRegistrar.addTriggerTask( //1.添加任務內容(Runnable) () -> System.out.println("執行動態定時任務: " + LocalDateTime.now().toLocalTime()), //2.設置執行週期(Trigger) triggerContext -> { //2.1 從數據庫獲取執行週期 String cron = cronMapper.getCron(); //2.2 合法性校驗. if (StringUtils.isEmpty(cron)) { // Omitted Code .. } //2.3 返回執行週期(Date) return new CronTrigger(cron).nextExecutionTime(triggerContext); } ); } }
基於註解設定多線程定時任務
//@Component註解用於對那些比較中立的類進行註釋; //相對與在持久層、業務層和控制層分別採用 @Repository、@Service 和 @Controller 對分層中的類進行註釋 @Component @EnableScheduling // 1.開啓定時任務 @EnableAsync // 2.開啓多線程 public class MultithreadScheduleTask { @Async @Scheduled(fixedDelay = 1000) //間隔1秒 public void first() throws InterruptedException { System.out.println("第一個定時任務開始 : " + LocalDateTime.now().toLocalTime() + "\r\n線程 : " + Thread.currentThread().getName()); System.out.println(); Thread.sleep(1000 * 10); } @Async @Scheduled(fixedDelay = 2000) public void second() { System.out.println("第二個定時任務開始 : " + LocalDateTime.now().toLocalTime() + "\r\n線程 : " + Thread.currentThread().getName()); System.out.println(); } }