InterviewSolution
Saved Bookmarks
| 1. |
What Is Itemwriter In Spring Batch Framework? |
|
Answer» ItemWriter is an abstraction that REPRESENTS the output of a Step, one batch or chunk of ITEMS at a TIME. Generally, an item WRITER has no knowledge of the input it will receive next, only the item that was PASSED in its current invocation. ItemWriter is an abstraction that represents the output of a Step, one batch or chunk of items at a time. Generally, an item writer has no knowledge of the input it will receive next, only the item that was passed in its current invocation. |
|