Class NullBatchConfiguration
- java.lang.Object
-
- com.github.marschall.spring.batch.inmemory.NullBatchConfiguration
-
@Configuration public class NullBatchConfiguration extends Object
An alternative toAbstractBatchConfiguration
that sets up Spring Batch with a nullJobRepository
andJobExplorer
without the need for aBatchConfigurer
.
-
-
Constructor Summary
Constructors Constructor Description NullBatchConfiguration()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description JobBuilderFactory
jobBuilders()
JobExplorer
jobExplorer()
JobLauncher
jobLauncher()
JobRegistry
jobRegistry()
JobRepository
jobRepository()
static JobScope
jobScope()
StepBuilderFactory
stepBuilders()
static StepScope
stepScope()
-
-
-
Method Detail
-
jobBuilders
@Bean public JobBuilderFactory jobBuilders()
-
stepBuilders
@Bean public StepBuilderFactory stepBuilders()
-
jobRepository
@Bean public JobRepository jobRepository()
-
jobLauncher
@Bean public JobLauncher jobLauncher()
-
jobExplorer
@Bean public JobExplorer jobExplorer()
-
jobRegistry
@Bean public JobRegistry jobRegistry()
-
-