hi,
is it possible for a step to do the following
1- read all the needed data
2- then process that data
3- finally write it
is it a matter of configuration? or does it need some development?
Spring Batch implements the read-process-write pattern with the chunk-oriented step. The read/write phases can be a matter of configuration thanks to off-the-shelves components that Spring Batch provides for common sources (flat/XML files, databases). The process phase usually contains some business logic, so it typically needs some development. |