I have multiple jobs in my spring batch application. And none of the jobs are configured to Launch by default. In 4.x, i could invoke a particular job from commandline using --spring.batch.job.names=My-JOB-1
.
Now I am migrating from spring batch 4.x to 5.x ( as part of spring boot 2.6.6 to 3.x migration).
But now the above approach does not seem to work in spring batch 5. Is this the expected behavior with spring batch 5. If it is, then what is the work around for this.
I have looked at spring batch 5.0.3 docs but there is no mention of this change.
(Note: using main method or CommandLineRunner i can solve it but it looks like overkill and a generic approach)