From the course: Spring: Spring Batch

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Job operation

Job operation

From the course: Spring: Spring Batch

Start my 1-month free trial

Job operation

- [Instructor] When operating batch jobs how a job is launched is very important. Jobs often have dependencies on other jobs and must be executed in an appropriate sequence for business operations to be successful. Spring boot and Spring batch offer a few strategies for launching a batch job. However, many enterprises prefer to launch jobs with a scheduler. Let's take a look at a few options for launching batch jobs and scheduling their execution. There are three primary strategies for launching the execution of Spring batch jobs, which include Spring Boot, schedulers, and rest. We've already seen Spring Boot in action throughout the course. Spring Boot includes the job launcher command line runner that allows us to execute jobs via an executable jar from the command line. Through the application dot properties file and the parameters used to launch the jar, we can control what jobs are launched and the job parameters they…

Contents