I have to implement, maybe, a custom FlatFileItemReader that reads a CSV file which ignores all the additional fields that will be included in the CSV file (say all the fields after field 10)....
Type: Posts; User: rinpoche; Keyword(s):
I have to implement, maybe, a custom FlatFileItemReader that reads a CSV file which ignores all the additional fields that will be included in the CSV file (say all the fields after field 10)....
Dan: After I posted the message I was able to figure it out. This is how it has been configured, maybe it might help others.
<job id="loadexceptionJob">
<step id="step1">
<tasklet>...
I have a similar issue where I use a MultiResourceItemReader delegates to a customized ItemReader (LoadExceptionItemReader) which in turn delegates to FlatFileItemReader. The LoadExceptionItemReader...
springilu: Thanks for your response. As I understand, with the approach you have outlined it will essentially improve the processing speed per file but will not process process multiple files...
Cerrog:
I am doing something similar. Any chance you share the progress you have made? Specifically looking for the job xml and job launcher and any other relevant config file you may be using.
Dan: In this same scenario where there are multiple input files, and a corresponding output file with a similar name is written out for each input file, how can parallel processing or any other...
Prashant:
Thank you. Can you please also share the corresponding job and associated XML configuration files? Mainly the job and the context files.
Regards
Ajay
Prashant:
I am also working on a similar scenario, where I need the output filename to be a variation of the input filename. And I have multiple input files that match a filename pattern, similar...