Spring / Spring batch Interview questions
Define a Job in Spring Batch.
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.
More Related questions...