I read a csv file with spring batch. I use FlatFileItemReader.
id number | score 1 | score 2 | score 3
I need to take this line and create multiple record because the database is in this format
id number
score
So in this example I would need to create 3 record
id number | score 1
id number | score 2
id number | score 3
Is there a way to take this line and convert it to write multiple row?
>`. That's what your requirement is right? I don't have an example right now, but give it a try and if you need support, you can share what you tried I will try help.