InterviewSolution
| 1. |
Define A Job In Spring Batch? |
|
Answer» A Job is an entity that encapsulates an entire batch PROCESS. Job will be WIRED together using a XML configuration file or JAVA based configuration. This configuration is ALSO referred as "job configuration". A Job is simply a container for Steps and it combines multiple steps that RUNS logically together in a flow. A Job is an entity that encapsulates an entire batch process. Job will be wired together using a XML configuration file or Java based configuration. This configuration is also referred as "job configuration". A Job is simply a container for Steps and it combines multiple steps that runs logically together in a flow. |
|