spring-batch icon indicating copy to clipboard operation
spring-batch copied to clipboard

Use contextual lambdas to configure batch artefacts

Open fmbenhassine opened this issue 7 months ago • 6 comments

This request is about improving the builders of item readers and writers to use Lambdas for configuration options:

Current API:

var reader = new FlatFileItemReaderBuilder()
 .resource(...)
 .delimited()
 .delimiter(",")
 .quoteCharacter('"')
 ...
 .build();

Proposal:

var reader = new FlatFileItemReaderBuilder()
 .resource(...)
 .delimited ( config -> config.delimiter(',').quoteCharcter( '"' ))
 ...
 .build();

cc @joshlong

fmbenhassine avatar Apr 28 '25 13:04 fmbenhassine