您好,登錄后才能下訂單哦!
springboot中如何使用@Scheduled實(shí)現(xiàn)定時(shí)任務(wù),很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
1、pom.xml中導(dǎo)入必要的依賴:
<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、寫一個(gè)springboot的啟動(dòng)類:
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 // 開啟定時(shí)任務(wù)@EnableAutoConfigurationpublic class App { public static void main(String[] args) { SpringApplication.run(App.class, args); }}
注意這里一定要加上@EnableScheduling注解,用于開啟定時(shí)任務(wù)
3、開始寫定時(shí)任務(wù):
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("定時(shí)任務(wù):" + System.currentTimeMillis()); }}
解釋:
@Scheduled注解:
1、fixedRate 以固定速率執(zhí)行。以上表示每隔1秒執(zhí)行一次
2、fixedDelay 以上一個(gè)任務(wù)開始時(shí)間為基準(zhǔn),從上一任務(wù)開始執(zhí)行后再次調(diào)用
3、cron表達(dá)式。可以實(shí)現(xiàn)定時(shí)調(diào)用。
在使用的過程中,樓主覺得,如果只有一個(gè)定時(shí)任務(wù),fixedRate與fixedDelay的效果是一樣一樣的
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。