我不确定我是否正确使用JobLauncherCommandLineRunner
。我正在开发一个批处理作业,它将通过命令行调用,运行完成,然后停止。它从命令行获取1个参数,我正在使用:
当我通过命令行调用它时,例如:
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);
}
}
答案 0 :(得分:7)
<强> tldr; 强>
在SpringApplication.exit(context);
方法中将SpringApplication.run
命令放在main
之后。
@SpringBootApplication
public class MyJob {
public static void main(String[] args) {
ApplicationContext context = SpringApplication.run(NingesterApplication.class, args);
System.exit(SpringApplication.exit(context));
}
}
想出来。有几个关键的事情要理解:
此ExitCodeGenerator
(特别是JobExecutionExitCodeGenerator)会从链接到JobExecution
的每个JobExecutionEvent
收集BatchStatus。
JobLauncherCommandLineRunner为其执行的每个作业发布JobExecutionEvent
。
JobLauncherCommandLineRunner
作为应用程序上下文启动的一部分启动作业
因此,批处理作业将在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
序号值匹配的退出代码。
旁注:日志有点误导,因为我看到了
但功能上它起作用:
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