InterviewSolution
Saved Bookmarks
| 1. |
Explain The Role Of Jobrepository In Spring Batch? |
|
Answer» The JobRepository is used for basic CRUD operations of the VARIOUS persisted domain objects within Spring Batch, such as JobExecution and StepExecution. It is REQUIRED by many of the major framework features, such as the JobLauncher, JOB, and Step. The JobRepository is used for basic CRUD operations of the various persisted domain objects within Spring Batch, such as JobExecution and StepExecution. It is required by many of the major framework features, such as the JobLauncher, Job, and Step. |
|