InterviewSolution
| 1. |
How Do I Configure A Job In Spring Batch Framework? |
|
Answer» A JOB in SPRING Batch contains a SEQUENCE of ONE or more Steps. Each Step can be configured with the list of parameters/attribute required to execute each step. next : next step to execute TASKLET: task or chunk to execute. A chunk can be configured with a Item Reader, Item Processor and Item Writer. decision : Decide which steps need to executed. A Job in Spring Batch contains a sequence of one or more Steps. Each Step can be configured with the list of parameters/attribute required to execute each step. next : next step to execute tasklet: task or chunk to execute. A chunk can be configured with a Item Reader, Item Processor and Item Writer. decision : Decide which steps need to executed. |
|