Spring / Spring batch Interview questions
Spring batch: uses of JobRepository.
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.
<job-repository id="myJobRepository" data-source="myDataSource" transaction-manager="myTransactionManager" isolation-level-for-create="SERIALIZABLE" table-prefix="MyBATCH_" max-varchar-length="1000"/>
The only required property is "id" and others are optional.
More Related questions...