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

溫馨提示×

溫馨提示×

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

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

怎么在springboot中使用@Scheduled實現一個定時任務

發布時間:2021-04-17 17:52:49 來源:億速云 閱讀:205 作者: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 // 開啟定時任務
@EnableAutoConfiguration
public 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;
@Component
public 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表達式。可以實現定時調用。

關于怎么在springboot中使用@Scheduled實現一個定時任務問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

富阳市| 波密县| 肥城市| 宁明县| 水城县| 仙游县| 施秉县| 香格里拉县| 普安县| 桦南县| 吴川市| 和田市| 乐安县| 从江县| 建昌县| 高平市| 舟山市| 三门峡市| 合作市| 大名县| 霍林郭勒市| 新竹市| 东乡族自治县| 阿拉善盟| 绥棱县| 石家庄市| 南郑县| 贡觉县| 资阳市| 武鸣县| 天柱县| 通辽市| 瓮安县| 四子王旗| 呈贡县| 乌兰察布市| 宁波市| 九龙县| 唐山市| 信阳市| 双桥区|