spring-batch
spring-batch copied to clipboard
Spring Batch is a framework for writing batch applications using Java and Spring
Thank you for taking time to contribute this pull request! You might have already read the [contributor guide][1], but as a reminder, please make sure to: * Sign the [contributor...
As of v4.3, `@EnableBatchProcessing` auto-configures all infrastructure beans except a `JobOperator`. So as a user, I still need to create a `JobOperator` bean myself like: ``` @Bean public JobOperator jobOperator(JobLauncher...
As of v4.3.3, there is no way to get a job instance for a given job name + job parameters with a `JobExplorer`/`JobRepository`. This issue is to add a method...
Currently, as of v4.3.3, `RowMapper` implementations of batch domain objects (`JobInstance`, `JobExecution`, `StepExecution`, and `ExecutionContext`) are [private inner classes](https://github.com/spring-projects/spring-batch/blob/193f82005a373819e5921c7e2255607cf239d14e/spring-batch-core/src/main/java/org/springframework/batch/core/repository/dao/JdbcJobExecutionDao.java#L400) in their respective JDBC DAOs. These mappers can be made public...
The [FAQ page](https://projects.spring.io/spring-batch/faq.html) is outdated. Moreover, this page is not accessible from the project's main page or reference documentation or README. This page should be updated and made accessible from...
**[Mauro Molinari](https://jira.spring.io/secure/ViewProfile.jspa?name=mauromol)** opened **[BATCH-2171](https://jira.spring.io/browse/BATCH-2171?redirect=false)** and commented I'm new to Spring Batch and my starting point to learn was the reference documentation. However, after reading it, looking at the examples and...
**[Dave Syer](https://jira.spring.io/secure/ViewProfile.jspa?name=david_syer)** opened **[BATCH-1658](https://jira.spring.io/browse/BATCH-1658?redirect=false)** and commented --- **Affects:** 2.1.5
Currently the vast majority of the Spring Batch examples are configured using XML configuration. This issue is to create an equivalent sample of each using Java configuration.
along with its builder test class SynchronizedItemStreamReaderBuilderTests
**Bug description** StaxEventItemReader uses platform default encoding to read XML files. **Environment** Spring-batch version 4.3.0. Related to #807 **Steps to reproduce** Just try to parse an XML file with a...