Hi all, I have a problem I haven't yet found a solution for.

I have one object to be built from multiple files. For instance:

Code:
Class MyObject
  - Property MyPropertyA
  - Property MyPropertyB
  - Property MyPropertyC
  - Property MyPropertyD
Now let's say I have three input files:

Code:
InputFileA.csv
InputFileB.csv
InputFileC.csv
I would have to read lines from all three files to create MyObject, let's say as follows:

Code:
MyPropertyA : InputFileA (line 13, field 4)
MyPropertyB : InputFileB (line 11, field 7)
MyPropertyC : InputFileC (line 5, field 2)
MyPropertyD : InputFileC (line 6, field 2)
Each of the records in these files would have a common identifier to enable the relationship to be built, say an ID number in field 1 of each file.

Is this possible with Spring or am I asking too much?


Cheers,
Jordan