Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anthony Foulfoin opened BATCH-2672 and commented
Currently we need to build the reader, and then set the encoding:
FlatFileItemReader<Company> reader = new FlatFileItemReaderBuilder<Company>() .name("") ... .build(); reader.setEncoding("ISO-8859-1");
It would be great to add the encoding in the builder flow:
FlatFileItemReader<Company> reader = new FlatFileItemReaderBuilder<Company>() .name("") .encoding("ISO-8859-1"); ... .build();
Affects: 4.0.0
Referenced from: pull request #569, and commits 8af6841
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Anthony Foulfoin opened BATCH-2672 and commented
Currently we need to build the reader, and then set the encoding:
It would be great to add the encoding in the builder flow:
Affects: 4.0.0
Referenced from: pull request #569, and commits 8af6841
The text was updated successfully, but these errors were encountered: