gpt4 book ai didi

java - JobLauncherCommandLineRunner 不会在作业完成时退出

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:44:37 26 4
gpt4 key购买 nike

我不确定我是否正确使用了 JobLauncherCommandLineRunner。我正在开发一个批处理作业,它将通过命令行调用,运行完成,然后停止。它从命令行获取 1 个参数,我正在使用:

  • Spring 启动 1.5.9
  • Spring 批处理 3.0.8

当我通过命令行调用它时,例如:

java -Dspring.profiles.active=solr,cassandra -Dspring.config.location=/path/to/job.yml -jar myjob.jar jobParam=/path/to/file.csv

应用程序似乎“永远”运行(至少在作业完成之后)。是否有某个配置可以在作业完成时关闭上下文?

目前我的 main 非常简单,我想保持这种状态。但也许我需要自定义逻辑来在作业完成后停止上下文?

@SpringBootApplication
public class MyJob {
public static void main(String[] args) {
SpringApplication.run(MyJob.class, args);
}
}

最佳答案

tldr;
SpringApplication.exit(context); 放在 main 方法中的 SpringApplication.run 命令之后。

@SpringBootApplication
public class MyJob {
public static void main(String[] args) {
ApplicationContext context = SpringApplication.run(NingesterApplication.class, args);
System.exit(SpringApplication.exit(context));
}
}

想通了。有几个关键的事情需要理解:

因此,批处理作业将在 SpringApplication.run(MyJob.class, args); 返回应用程序上下文之前运行完成(因为作业是上下文启动的一部分)。

所以,我需要做的就是在我的应用程序类中再添加一行:

@SpringBootApplication
public class MyJob {

private static final Logger log = LoggerFactory.getLogger(MyJob.class);

public static void main(String[] args) {
ApplicationContext context = SpringApplication.run(NingesterApplication.class, args);
// The batch job has finished by this point because the
// ApplicationContext is not 'ready' until the job is finished
// Also, use System.exit to force the Java process to finish with the exit code returned from the Spring App
System.exit(SpringApplication.exit(context));
}
}

然后,确保您使用 System.exit() 来确保应用程序将以与 BatchStatus 序号值匹配的退出代码退出。


旁注:日志有点误导,因为我看到了

  1. 工作启动
  2. 工作完成
  3. 上下文开始
  4. 上下文关闭。

但在功能上它是有效的:

2018-01-18 12:47:58.363  INFO 1504 --- [           main] o.s.b.c.l.support.SimpleJobLauncher      : Job: [SimpleJob: [name=myjob]] launched with the following parameters: [{jobParam=/path/to/file.csv}]
2018-01-18 12:47:58.399 INFO 1504 --- [ main] o.s.batch.core.job.SimpleStepHandler : Executing step: [step1]
2018-01-18 12:50:12.347 INFO 1504 --- [ main] o.s.b.c.l.support.SimpleJobLauncher : Job: [SimpleJob: [name=myjob]] completed with the following parameters: [{jobParam=/path/to/file.csv}] and the following status: [COMPLETED]
2018-01-18 12:50:12.349 INFO 1504 --- [ main] g.n.j.n.ningester.NingesterApplication : Started NingesterApplication in 136.813 seconds (JVM running for 137.195)
2018-01-18 12:50:12.350 INFO 1504 --- [ main] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@24313fcc: startup date [Thu Jan 18 12:47:55 PST 2018]; root of context hierarchy

关于java - JobLauncherCommandLineRunner 不会在作业完成时退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48328226/

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