中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot中如何使用@Scheduled實現定時任務

發布時間:2021-08-06 17:21:54 來源:億速云 閱讀:135 作者:Leah 欄目:編程語言

springboot中如何使用@Scheduled實現定時任務,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1、pom.xml中導入必要的依賴:

<parent>    <groupId>org.springframework.boot</groupId>    <artifactId>spring-boot-starter-parent</artifactId>    <version>2.0.1.RELEASE</version>  </parent>  <dependencies>    <!-- SpringBoot 核心組件 -->    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-web</artifactId>    </dependency>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-tomcat</artifactId>    </dependency>  </dependencies>

2、寫一個springboot的啟動類:

import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.EnableAutoConfiguration;import org.springframework.context.annotation.ComponentScan;import org.springframework.scheduling.annotation.EnableScheduling;@ComponentScan(basePackages = { "com.xwj.tasks" })@EnableScheduling // 開啟定時任務@EnableAutoConfigurationpublic class App {  public static void main(String[] args) {    SpringApplication.run(App.class, args);  }}

注意這里一定要加上@EnableScheduling注解,用于開啟定時任務

3、開始寫定時任務:

import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereotype.Component;@Componentpublic class ScheduleTask {  @Scheduled(fixedRate = 1000)  // @Scheduled(cron = "0 23-25 18 * * ?")  public void testSchedule() {    System.out.println("定時任務:" + System.currentTimeMillis());  }}

解釋:

@Scheduled注解:

1、fixedRate 以固定速率執行。以上表示每隔1秒執行一次

2、fixedDelay 以上一個任務開始時間為基準,從上一任務開始執行后再次調用

3、cron表達式。可以實現定時調用。

在使用的過程中,樓主覺得,如果只有一個定時任務,fixedRate與fixedDelay的效果是一樣一樣的

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江都市| 永善县| 西华县| 塔河县| 周口市| 桐柏县| 五大连池市| 成安县| 英超| 龙陵县| 绵阳市| 天柱县| 永丰县| 精河县| 漯河市| 镇巴县| 建平县| 嘉峪关市| 江阴市| 南丹县| 张北县| 兴化市| 南开区| 岳西县| 株洲市| 天全县| 个旧市| 阳原县| 温宿县| 达拉特旗| 保德县| 抚顺县| 秦皇岛市| 无极县| 禄劝| 两当县| 韩城市| 永登县| 偏关县| 壤塘县| 白沙|