I have a file as an input which contain a json Array :
[ {
...,
...
},
{
...,
...
},
{
...,
...
}
]
I want to read it without breaking the spring batch principales (With the same way as FlatFileReader or XmlReader)
I didn't find any way to do it the readers already implemented in spring-batch .
What's the best way to implement this reader ?
Thanks in Advance