Springbatch cursor reader
Spingbatch default cursor reader reads data readily. It has below advantages over jdbctemplate: 1. Traditional jdbctemplate reader reads data in one time, which makes wait for a very long time. But cursor reader reads steadily, we don’t need to wait. 2. Jdbctemplate reads in one time, and put everything in memory. But cursor reader can avoid this… Read More »