spring-batch
spring-batch copied to clipboard
Spring Batch is a framework for writing batch applications using Java and Spring
A chunk of items is a key concept in the chunk-oriented processing model and is nicely modelled with the `org.springframework.batch.core.step.item.Chunk` API. This API is used in almost all interfaces/classes related...
**[Philippe Marschall](https://jira.spring.io/secure/ViewProfile.jspa?name=marschall)** opened **[BATCH-2590](https://jira.spring.io/browse/BATCH-2590?redirect=false)** and commented Currently all timestamps on `JobExecution` and `StepExecution` are of type `java.util.Date`. It would be cool if instead they could be directly a Java 8...
**[Erwin Vervaet](https://jira.spring.io/secure/ViewProfile.jspa?name=klr8)** opened **[BATCH-2295](https://jira.spring.io/browse/BATCH-2295?redirect=false)** and commented The JobRepositoryFactoryBean will automatically wrap a transactional proxy around the created JobRepository instance to enforce its specialized transactional requirements (i.e. REQUIRES_NEW for create methods,...
**[Nico](https://jira.spring.io/secure/ViewProfile.jspa?name=niconavarrete)** opened **[BATCH-2524](https://jira.spring.io/browse/BATCH-2524?redirect=false)** and commented SimpleJobOperator stop() is decorated with `@Transactional`, therefore we cannot configure the transactionManager name as the other components , forcing the implementation of org.springframework.transaction.annotation.TransactionManagementConfigurer to set...
**[Robert Fischer](https://jira.spring.io/secure/ViewProfile.jspa?name=robertfischer)** opened **[BATCH-1858](https://jira.spring.io/browse/BATCH-1858?redirect=false)** and commented What should the behavior be here? assertTrue(jobExecution.getExecutionContext() != null); mapExecutionContextDao.updateExecutionContext(jobExecution); jobExecution.setExecutionContext(null); mapExecutionContextDao.updateExecutionContext(jobExecution); assert???(mapExecutionContextDao.getExecutionContext(jobExecution) == null); As of now, it will return non-null. I'm aware...
**[Matthew T. Adams](https://jira.spring.io/secure/ViewProfile.jspa?name=matthewadams)** opened **[BATCH-1729](https://jira.spring.io/browse/BATCH-1729?redirect=false)** and commented Adding conditional table creation to the creation scripts would be nice: CREATE TABLE IF NOT EXISTS ... That way, the scripts could be...
**[Andy Wilkinson](https://jira.spring.io/secure/ViewProfile.jspa?name=awilkinson)** opened **[BATCH-2326](https://jira.spring.io/browse/BATCH-2326?redirect=false)** and commented Possibly similar to [BATCH-1522](https://jira.spring.io/browse/BATCH-1522), I'm seeing an intermittent failure in FaultTolerantStepFactoryBeanRollbackTests.testMultithreadedSkipInWriter when building Spring Batch 3.0.2.RELEASE. The failure is: ``` java.lang.AssertionError: expected: but was:...
I am currently working on Spring Batch performance when reading and writing to a DB2 datasource. I have generally used Spring Batch with MySQL and compatibility and performance have been...
**[Gabriel Villacis](https://jira.spring.io/secure/ViewProfile.jspa?name=gvillacis)** opened **[BATCH-2478](https://jira.spring.io/browse/BATCH-2478?redirect=false)** and commented There is an issue present within JdbcPagingItemReader that in version 2 it is not present. Version 2 says that the inner class PagingRowMapper gets...
**[Niraj Gadgilwar](https://jira.spring.io/secure/ViewProfile.jspa?name=gadginir)** opened **[BATCH-2394](https://jira.spring.io/browse/BATCH-2394?redirect=false)** and commented I am using 3.0.4.RELEASE version of Spring Batch in my project. I have a batch which is using JdbcPagingItemReader to read records from DB2....