InterviewSolution
Saved Bookmarks
| 1. |
What Are The Different Bean Scope In Spring Batch 3.0? |
|
Answer» 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"> 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"> |
|