spring-batch
spring-batch copied to clipboard
Spring Batch is a framework for writing batch applications using Java and Spring
**[Steven Anton](https://jira.spring.io/secure/ViewProfile.jspa?name=santon)** opened **[BATCH-2293](https://jira.spring.io/browse/BATCH-2293?redirect=false)** and commented When using the CommandLineJobRunner, you cannot pipe in data through stdin without an exception. It appears the class assumes stdin is used to pipe...
**[ChangHun Lee](https://jira.spring.io/secure/ViewProfile.jspa?name=loslch)** opened **[BATCH-2354](https://jira.spring.io/browse/BATCH-2354?redirect=false)** and commented I've made batch jobs with leaving log on SQLite. When multiple jobs are executed at the same time, exception is occured. The exception detail...
**[Philippe BAYE](https://jira.spring.io/secure/ViewProfile.jspa?name=pbaye)** opened **[BATCH-2166](https://jira.spring.io/browse/BATCH-2166?redirect=false)** and commented The generated SQL requests look like this (for both first page & remaining pages) : SELECT * from (....) AS TMP_SUB WHERE ... But...
**[Frans Flippo](https://jira.spring.io/secure/ViewProfile.jspa?name=fransflippo)** opened **[BATCH-2125](https://jira.spring.io/browse/BATCH-2125?redirect=false)** and commented isEndOfRecord is currently implemented as: ``` public boolean isEndOfRecord(String line) { return StringUtils.countOccurrencesOf(line, "{") == StringUtils.countOccurrencesOf(line, "}") && line.trim().endsWith("}"); } ``` This is too...
**[Krishna Bhamidipati](https://jira.spring.io/secure/ViewProfile.jspa?name=sirdap)** opened **[BATCH-2107](https://jira.spring.io/browse/BATCH-2107?redirect=false)** and commented Spring Batch 2.1.8 introduced the `@BeforeStep` and `@AfterStep` annotations, in lieu of implementing StepExecutionListener. If a class: - both implements StepExecutionListener and uses the...
**[Simon Wong](https://jira.spring.io/secure/ViewProfile.jspa?name=simonwg)** opened **[BATCH-2098](https://jira.spring.io/browse/BATCH-2098?redirect=false)** and commented In a typical scenario, we will add a step listener that will rename the input file depends on whether the step's Exit Status is...
**[Philippe Mouawad](https://jira.spring.io/secure/[email protected])** opened **[BATCH-2081](https://jira.spring.io/browse/BATCH-2081?redirect=false)** and commented I have a batch with following configuration: - tasklet using a multiThreaded task-executor - multiThreaded task-executor has 15 threads - throttle-limit == number of...
**[Hendy Irawan](https://jira.spring.io/secure/ViewProfile.jspa?name=ceefour)** opened **[BATCH-2084](https://jira.spring.io/browse/BATCH-2084?redirect=false)** and commented Note that care has been taken (via Quartz scheduler) to ensure no two same jobs are launched at the same time. Error happens when...
**[Chris French](https://jira.spring.io/secure/[email protected])** opened **[BATCH-1992](https://jira.spring.io/browse/BATCH-1992?redirect=false)** and commented When the partitioner fails during the initial attempt to partition, upon restart the partition method is skipped. Issue appears to be here: org.springframework.batch.core.partition.support.SimpleStepExecutionSplitter#getContexts For...
**[Tobias Flohre](https://jira.spring.io/secure/ViewProfile.jspa?name=tobias79)** opened **[BATCH-1991](https://jira.spring.io/browse/BATCH-1991?redirect=false)** and commented In Spring Batch 2.1.9 a TerminateOnExceptionChunkListenerDelegate was introduced in the FaultTolerantStepFactoryBean. Every ChunkListener now gets wrapped into that Delegate. Unfortunately the ordering information is...