gpt4 book ai didi

java - Spring @Scheduled 注解在同一时间实例中按顺序执行

转载 作者:行者123 更新时间:2023-12-02 08:52:05 26 4
gpt4 key购买 nike

import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.Scheduled;

@Configuration
public class Scheduler {

@Scheduled(cron = "0 */1 * * * ?")
public void method1() {
System.out.println("1");
}

@Scheduled(cron = "0 */2 * * * ?")
public void method2(){
System.out.println("2");
}

@Scheduled(cron = "0 */1 * * * ?")
public void method3() {
System.out.println("3");
}

@Scheduled(cron = "0 */2 * * * ?")
public void method4() {
System.out.println("4");
}
}

实际输出:

1
3

1
3
2
4

3
1

1
2
3
4

1
3

3
1
2
4

我收到的输出在同一时间是完全随机的。但我想按照下面提到的方式对同一时间实例的输出进行排序:

1
3

1
2
3
4

1
3

1
2
3
4

是否可以使用相同的 Cron 表达式来实现上述场景?

最佳答案

您必须添加更小的时间单位:

@Scheduled(cron = "0 */1 * * * ?")
public void method1() {
System.out.println("1");
}

@Scheduled(cron = "1 */2 * * * ?")
public void method2(){
System.out.println("2");
}

@Scheduled(cron = "2 */1 * * * ?")
public void method3() {
System.out.println("3");
}

@Scheduled(cron = "3 */2 * * * ?")
public void method4() {
System.out.println("4");
}

编辑:其他实现:

public void method1()  {
System.out.println("1");
}

public void method2(){
System.out.println("2");
}

public void method3() {
System.out.println("3");
}

public void method4() {
System.out.println("4");
}

@Scheduled(cron = "0 */2 * * * *")
public void even() {
method1();
method2();
method3();
method4();
}

@Scheduled(cron = "0 1/2 * * * *")
public void odd() {
method1();
method3();
}

关于java - Spring @Scheduled 注解在同一时间实例中按顺序执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60709540/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com