有没有办法将任务结果作为输入传递给其他任务,如下图所示。听起来很简单,但我在 Internet 上找不到任何东西。我不想使用队列或其他机制来执行此操作,我正在寻找一种“本机”方式的任务。
我找到了这个例子,我认为在这种情况下,字符串代表任务的输入,但我无法弄清楚如何生成输出以发送到下一个任务
@SpringBootApplication
public class SpringCloudTaskTestApplication {
public static void main(String[] args) {
SpringApplication.run(SpringCloudTaskTestApplication.class, args);
}
@Bean
public CommandLineRunner commandLineRunner() {
return new HelloWorldCommandLineRunner();
}
public static class HelloWorldCommandLineRunner implements CommandLineRunner {
@Override
public void run(String... strings) throws Exception {
System.out.println("TASK args: "+Arrays.toString(strings));
}
}
}
叮当猫咪
相关分类