Mahmoud Ben Hassine
Mahmoud Ben Hassine
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('"')...
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 and SQLServer job repository support without impacting the build performance due to the following warnings: ``` [INFO] Running org.springframework.batch.core.test.repository.Db2JobRepositoryIntegrationTests...
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...
The [What’s New](https://docs.spring.io/spring-statemachine/docs/4.0.0/reference/index.html#whatsnew) section of v4 stops at v3 and does not contain new features and changes introduced in v4.
Compared to its quite stable XML counterpart, the java DSL for job flow definition has multiple issues: https://github.com/spring-projects/spring-batch/issues?q=is%3Aissue+is%3Aopen+label%3A%22related-to%3A+flow-definition%22 We need to revisit this in v6.
### Discussed in https://github.com/spring-projects/spring-batch/discussions/5032 Originally posted by **Sax388** October 17, 2025 Hi there, I spent a little (too much) time figuring out why my batch job was running into out-of-memory...