Spring / Spring batch Interview questions
what are the different bean scope in Spring Batch 3.0?
Step scope- there is only one instance of such a bean per executing step.
<bean id="..." class="..." scope="step">
Job scope- there is only one instance of such a bean per executing Job.
<bean id="..." class="..." scope="job">
More Related questions...