91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringBoot任務調度實現

發布時間:2024-11-27 15:11:12 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在Spring Boot中,我們可以使用@Scheduled注解和TaskScheduler接口來實現任務調度。下面是兩種實現方法的詳細說明和示例代碼。

方法一:使用@Scheduled注解

  1. 在Spring Boot的主類或者配置類上添加@EnableScheduling注解,以啟用定時任務支持。
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;

@SpringBootApplication
@EnableScheduling
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
  1. 創建一個定時任務類,并在需要執行的方法上添加@Scheduled注解。你可以通過fixedRatefixedDelaycron表達式來配置任務的執行頻率。
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class MyScheduledTasks {

    @Scheduled(fixedRate = 5000) // 每隔5秒執行一次
    public void task1() {
        System.out.println("Task 1 is running");
    }

    @Scheduled(cron = "0 * * * * *") // 每小時的0分執行一次
    public void task2() {
        System.out.println("Task 2 is running");
    }
}

方法二:使用TaskScheduler接口

  1. 在Spring Boot的主類或者配置類上添加@EnableScheduling注解,以啟用定時任務支持。
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;

@SpringBootApplication
@EnableScheduling
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
  1. 創建一個定時任務類,并實現TaskScheduler接口。
import org.springframework.scheduling.TaskScheduler;
import org.springframework.stereotype.Component;

import java.util.concurrent.ScheduledFuture;

@Component
public class MyScheduledTasks implements TaskScheduler {

    private final TaskScheduler taskScheduler;
    private ScheduledFuture<?> scheduledFuture;

    public MyScheduledTasks(TaskScheduler taskScheduler) {
        this.taskScheduler = taskScheduler;
    }

    @Override
    public ScheduledFuture<?> schedule(Runnable command, long delay) {
        scheduledFuture = taskScheduler.schedule(command, new Trigger() {
            @Override
            public Date nextExecutionTime(TriggerContext triggerContext) {
                return new Date(System.currentTimeMillis() + delay);
            }
        });
        return scheduledFuture;
    }

    @Override
    public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period) {
        scheduledFuture = taskScheduler.scheduleAtFixedRate(command, initialDelay, period);
        return scheduledFuture;
    }

    @Override
    public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay) {
        scheduledFuture = taskScheduler.scheduleWithFixedDelay(command, initialDelay, delay);
        return scheduledFuture;
    }

    public void cancel() {
        if (scheduledFuture != null) {
            scheduledFuture.cancel(false);
        }
    }
}
  1. 在需要執行的方法中,調用MyScheduledTasks類中的相應方法來執行任務。
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MyController {

    @Autowired
    private MyScheduledTasks myScheduledTasks;

    @GetMapping("/startTask")
    public String startTask() {
        myScheduledTasks.scheduleAtFixedRate(() -> {
            System.out.println("Task is running");
        }, 0, 5000); // 每隔5秒執行一次
        return "Task started";
    }

    @GetMapping("/stopTask")
    public String stopTask() {
        myScheduledTasks.cancel();
        return "Task stopped";
    }
}

這樣,你就可以在Spring Boot應用中使用任務調度功能了。

向AI問一下細節

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

AI

十堰市| 苍山县| 龙海市| 壤塘县| 攀枝花市| 马关县| 深圳市| 黄冈市| 墨江| 临江市| 丹棱县| 明星| 上饶县| 新竹市| 乌拉特前旗| 襄垣县| 徐汇区| 新安县| 铅山县| 霞浦县| 潜山县| 明溪县| 如东县| 安国市| 永仁县| 潼关县| 鹿邑县| 呼玛县| 祥云县| 广水市| 石家庄市| 天峻县| 萨迦县| 大埔县| 兴隆县| 宁乡县| 察雅县| 缙云县| 老河口市| 屏东县| 大同县|