Spring Batch 6.0.0-RC2 available now!
I am pleased to announce that Spring Batch 6.0.0-RC2 is now available from Maven Central!
What's new in Spring Batch 6.0.0-RC2?
This second release candidate introduces a long-awaited feature which is the use of contextual lambda expressions to configure batch artefacts. This new style of configuration provides a more concise and readable way to define item readers and writers.
For example, instead of using the traditional builder pattern like in the following snippet to define a delimited file reader:
var reader = new FlatFileItemReaderBuilder()
.resource(...)
.delimited…