spring-batch
spring-batch copied to clipboard
Spring Batch is a framework for writing batch applications using Java and Spring
**Bug description** I am developing an application that executes jobs by executing the TaskExecutorJobLauncher#run(job, jobParameters) method within a RESTful service. The first time a job is executed, it works as...
i faced MongoDB WriteConflict Error when tried to use parallel processing in my job application **Environment** using spring boot 3.4.5 with spring batch , mongodb 4.4 situation i read from...
Following the [deprecation](https://github.com/spring-projects/spring-framework/wiki/Spring-Framework-7.0-Release-Notes#deprecations) of the `mvc` namespace in Spring Framework 7, we are intending to deprecate the `batch` XML namespace support (in favor of Java configuration) which has been causing...
This request is about improving the builders of item readers and writers to use Lambdas for configuration options: Current API: ```java var reader = new FlatFileItemReaderBuilder() .resource(...) .delimited() .delimiter(",") .quoteCharacter('"')...
### Description This PR addresses #4818 - Renamed internal builder field prefixes from `builder` to `spec` for clarity - Added overloaded delimited(Consumer) and formatted(Consumer) methods to FlatFileItemWriterBuilder. - Added overloaded...
Similar to #4565, it should be possible to add a description for a step both with the XML and Java configuration styles.
This issue is to explore the (crazy?) idea of introducing a new paradigm of how we instruct machines to perform data processing tasks in batch mode: AI-driven, agentic batch processing....
This issue is to find the best way to test DB2 job repository support without impacting the build performance due to the following warning: ``` [INFO] Running org.springframework.batch.core.test.repository.Db2JobRepositoryIntegrationTests [main] INFO...
Related to https://github.com/spring-projects/spring-framework/issues/34794
Spring batch allows job without parameters to restart even if the job already completed successfully
### Discussed in https://github.com/spring-projects/spring-batch/discussions/4694 Originally posted by **ELMORABITYounes** October 28, 2024 Right now even if a job was completed successfuly, spring batch allow It to be restarted if It contains...