I'm trying to change existing spring batch job(XML config) which reads data from oracle database and write into txt AND XML file in required format but now I want to change same implementation to read data from Cassandra database instead of oracle but I don't see any Item Reader available similer to JdbcCursorItemReader in spring batch for Cassandra db.
Can someone tell me which ItemReader should i use to read data from Cassandra db? OR Do I need to create a custom ItemReader to read data from Cassandra db?