Example usage for org.springframework.batch.core.configuration.annotation BatchConfigurer interface-usage

List of usage examples for org.springframework.batch.core.configuration.annotation BatchConfigurer interface-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.configuration.annotation BatchConfigurer interface-usage.

Usage

From source file org.my.spring.batch.java.config.demo.configuration.BatchConfiguration.java

/**
 *
 * @author hilel
 */
@Configuration
@PropertySource("classpath:mysql.batch.properties")

From source file org.springframework.boot.autoconfigure.batch.BasicBatchConfigurer.java

/**
 * Basic {@link BatchConfigurer} implementation.
 *
 * @author Dave Syer
 * @author Andy Wilkinson
 */

From source file org.springframework.batch.core.configuration.annotation.DefaultBatchConfigurer.java

@Component
public class DefaultBatchConfigurer implements BatchConfigurer {
    private static final Log logger = LogFactory.getLog(DefaultBatchConfigurer.class);

    private DataSource dataSource;
    private PlatformTransactionManager transactionManager;

From source file pl.edu.pwr.szlagor.masterthesis.linguisticsummary.semantic.config.SemanticBatchConfigurer.java

@Component
public class SemanticBatchConfigurer implements BatchConfigurer {
    private static final Log logger = LogFactory.getLog(SemanticBatchConfigurer.class);

    private DataSource dataSource;
    private PlatformTransactionManager transactionManager;

From source file de.codecentric.batch.configuration.TaskExecutorBatchConfigurer.java

/**
 * This batch infrastructure configuration is quite similar to the
 * {@link org.springframework.batch.core.configuration.annotation.DefaultBatchConfigurer}, it only
 * references a {@link org.springframework.core.task.TaskExecutor} used in the {@link org.springframework.batch.core.launch.support.SimpleJobLauncher}
 * for starting jobs asynchronously. 
 * 

From source file io.getlime.push.configuration.BatchSendingConfiguration.java

/**
 * Configuration class for job used in batch sending campaign
 *
 * @author Petr Dvorak, petr@lime-company.eu
 * @author Martin Tupy, martin.tupy.work@gmail.com
 */