Example usage for org.springframework.batch.core.repository.dao AbstractJdbcBatchMetadataDao subclass-usage

List of usage examples for org.springframework.batch.core.repository.dao AbstractJdbcBatchMetadataDao subclass-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.repository.dao AbstractJdbcBatchMetadataDao subclass-usage.

Usage

From source file org.springframework.batch.core.repository.dao.JdbcStepExecutionDao.java

/**
 * JDBC implementation of {@link StepExecutionDao}.<br>
 *
 * Allows customization of the tables names used by Spring Batch for step meta
 * data via a prefix property.<br>
 *

From source file org.springframework.batch.core.repository.dao.JdbcJobExecutionDao.java

/**
 * JDBC implementation of {@link JobExecutionDao}. Uses sequences (via Spring's
 * {@link DataFieldMaxValueIncrementer} abstraction) to create all primary keys
 * before inserting a new row. Objects are checked to ensure all mandatory
 * fields to be stored are not null. If any are found to be null, an
 * IllegalArgumentException will be thrown. This could be left to JdbcTemplate,