InterviewSolution
Saved Bookmarks
| 1. |
What Is Itemreader In Spring Batch Framework? |
|
Answer» ItemReader is an ABSTRACTION that represents the retrieval of input for a Step, ONE item/row/record at a time. When the ItemReader has exhausted the items it can provide, it will indicate this by RETURNING NULL. ItemReader is an abstraction that represents the retrieval of input for a Step, one item/row/record at a time. When the ItemReader has exhausted the items it can provide, it will indicate this by returning null. |
|