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

Spring Batch is a framework for writing batch applications using Java and Spring

Results 361 spring-batch issues
Sort by recently updated
recently updated
newest added

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...

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...

status: waiting-for-triage
type: feature

**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

status: waiting-for-triage
type: feature

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...

status: waiting-for-triage
type: bug

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...

status: waiting-for-triage
type: feature

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...

pr-for: feature
in: core

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...

status: waiting-for-triage
type: bug

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...

pr-for: bug
in: core
status: feedback-provided

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...

status: waiting-for-triage
type: bug