Spring Batch
Read CSV files from S3 using Spring Batch
In this post, let’s see how to read files from S3 using spring batch. We will read CSV files as stream without loading the entire data in memory and process each item. For Item writer, we’ll use just the no operation item writer since we will not write the items Read more…