We are currently migrating a complex spring boot batch + admin UI system into a spring-cloud-task infrastructure that will be managed Cloud Data Flow.
As first phase of POC we must be able to still package all of our Spring batch Jobs under the same deployment JAR and be able to run them one by one with custom jobs parameters and support some kind of REST API to executing the jobs/task remotely.
We removed any spring-batch admin dependencies and added the spring-cloud-starter-task
we also adapted the boot application to Spring Cloud Task programming model.
after registering the JAR on the spring cloud dataflow we were unable to define a task that will trigger only a specific Job with custom parameters.
reading the the official document and stackOverFlow issues without any more promising results.
10x