I have 2 fixed-length flat files F1 and F2 containing data (id, A, B) and (id, C, D) respectively.
I am trying to instantiate an object Foo f = new Foo (id, A, B, C, D).
How can I achieve this feat with spring batch. I don't have access to any DB so I can't insert Foo(id, A, B) into a staging table and then update the missing values.
Thank you so much :)
SystemCommandTaskletto merge files and then use a chunk-oriented step to process the merged file containing prepared data like you expect it.