开发者

How to run job parameters in spring batch with maven in CLI

开发者 https://www.devze.com 2022-12-07 21:07 出处:网络
I have seen several stackoverflow Q&As but none had a job parameter in CLI while using maven. My parameter is setup like this:

I have seen several stackoverflow Q&As but none had a job parameter in CLI while using maven.

My parameter is setup like this:

@Value("#{jobParameters.getOrDefault('startTimestamp', null)}") Long startTimestamp

My maven command is like this:

mvn clean spring-boot:run -Dspring.batch.job.names=myJob -Dspring.profiles.active=default,dev开发者_JAVA技巧 -f pom.xml

I am not sure what to add. the following is not working:

-Dspring.batch.job.startTimestamp=1667790578000
-Dspring.batch.job.parameters.startTimestamp=1667790578000


Job parameters are set through the jobLauncher. For example:

JobParameters jobParameters = new JobParametersBuilder()
    .addLong("startTimestamp", 1667790578000L).toJobParameters();

JobExecution execution = jobLauncher.run(job, jobParameters);

If you want to send the parameter as a property, you need to use the @Value annotation to inject your custom property into the bean that launches the job.


From the command line, you can pass job parameters as key/value pairs:

java -jar myjob.jar name=foobar startTimestamp=1667790578000


if you want to pass job parameters with maven, you can use:

mvn spring-boot:run -Dspring-boot.run.arguments="param1=value1 param2=value2"

You can find here the documentation.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号