真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springboot中如何使用@Scheduled實現(xiàn)定時任務-創(chuàng)新互聯(lián)

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

成都創(chuàng)新互聯(lián)公司堅持“要么做到,要么別承諾”的工作理念,服務領域包括:網(wǎng)站設計制作、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的羅定網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!

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

   org.springframework.boot    spring-boot-starter-parent    2.0.1.RELEASE                  org.springframework.boot      spring-boot-starter-web              org.springframework.boot      spring-boot-starter-tomcat      

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 以固定速率執(zhí)行。以上表示每隔1秒執(zhí)行一次

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

3、cron表達式??梢詫崿F(xiàn)定時調用。

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

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設公司,的支持。


新聞標題:springboot中如何使用@Scheduled實現(xiàn)定時任務-創(chuàng)新互聯(lián)
網(wǎng)頁路徑:http://weahome.cn/article/ddjgge.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部