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:
Now let's say I have three input files:Code:Class MyObject - Property MyPropertyA - Property MyPropertyB - Property MyPropertyC - Property MyPropertyD
I would have to read lines from all three files to create MyObject, let's say as follows:Code:InputFileA.csv InputFileB.csv InputFileC.csv
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.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)
Is this possible with Spring or am I asking too much?
Cheers,
Jordan


Reply With Quote