Class BatchAutoConfiguration

java.lang.Object
org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration

@AutoConfiguration(after=HibernateJpaAutoConfiguration.class) @ConditionalOnClass({org.springframework.batch.core.launch.JobLauncher.class,javax.sql.DataSource.class}) @ConditionalOnBean({javax.sql.DataSource.class,org.springframework.batch.core.launch.JobLauncher.class}) @EnableConfigurationProperties(BatchProperties.class) @Import({org.springframework.boot.autoconfigure.batch.BatchConfigurerConfiguration.class,DatabaseInitializationDependencyConfigurer.class}) public class BatchAutoConfiguration extends Object
Auto-configuration for Spring Batch. By default a Runner will be created and all jobs in the context will be executed on startup.

Disable this behavior with spring.batch.job.enabled=false).

Alternatively, discrete Job names to execute on startup can be supplied by the User with a comma-delimited list: spring.batch.job.names=job1,job2. In this case the Runner will first find jobs registered as Beans, then those in the existing JobRegistry.

Since:
1.0.0
Author:
Dave Syer, EddĂș MelĂ©ndez, Kazuki Shimizu, Mahmoud Ben Hassine