spring-batch
spring-batch copied to clipboard
Spring Batch is a framework for writing batch applications using Java and Spring
Solved spring-projects#4605 - Motivation There is nothing in the official document that says that using `@EnableBatchProcessing` in Spring Boot3 will initialize the configuration. I used `@EnableBatchProcessing` as explained in the...
Allow defining the Job level on @JobScope when we are using parent and child jobs (JobStepBuilder)
When using an architecture of jobs and subjobs, we miss a way to specify the level of @JobScope on certain @Beans. For instance, if we have a parent job that...
**Expected Behavior** The **ClassifierCompositeItemWriter** should use covariance for classify the items. In the class the **classifier** property should be defined with an output type of `ItemWriter
This is posted here as I did not get a response on https://stackoverflow.com/questions/78199004/restarting-a-failed-job-is-not-processing-the-failed-chunk-data-again-continua This is my step definition for spring batch partition approach, @Bean public Step step1() { return new...
From the [#4252](https://github.com/spring-projects/spring-batch/issues/4252), I realized that I had to use addScript to create the metadata table when using an In-memory database in Spring Boot 3.0 / Spring Batch 5.0. I...
Issue #4586 ### Motivation ```java @Bean public DataSource dataSource() { return new EmbeddedDatabaseBuilder() .addScript("/org/springframework/batch/core/schema-h2.sql") .build(); } ``` - On https://github.com/spring-projects/spring-batch/issues/4586, I think it is better to use static variables to...
Solved #4555 * Motivation On https://github.com/spring-projects/spring-batch/issues/4555, We found delete methods in SimpleJobRepository are removing with separated SQL queries for each metadata tables * Modification Add ON DELETE CASCADE to each...
Please do a quick search on Github issues first, there might be already a duplicate issue for the one you are about to create. If the bug is trivial, just...
related issue #3939 ## Motivation - On https://github.com/spring-projects/spring-batch/issues/3939, when two flows are executed in parallel, I found that even though one flow throw an interruption and terminated the job, the...
Hi. Please confirm the discrepancy in the "thread safety" annotation across subclasses' comments. There is a discrepancy between the documentation for version 5 of `AbstractPagingItemReader`, which states that it is...