Spring / Spring batch Interview questions
What is ItemReader in Spring batch framework?
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.
More Related questions...