类 JdbcStepExecutionDao

  • 所有已实现的接口:
    StepExecutionDao, org.springframework.beans.factory.InitializingBean

    public class JdbcStepExecutionDao
    extends AbstractJdbcBatchMetadataDao
    implements StepExecutionDao, org.springframework.beans.factory.InitializingBean
    JDBC implementation of StepExecutionDao.
    Allows customization of the tables names used by Spring Batch for step meta data via a prefix property.
    Uses sequences or tables (via Spring's DataFieldMaxValueIncrementer abstraction) to create all primary keys before inserting a new row. All objects are checked to ensure all 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, however, the exception will be fairly vague, and fails to highlight which field caused the exception.
    作者:
    Lucas Ward, Dave Syer, Robert Kasanicky, David Turanski, Mahmoud Ben Hassine
    另请参阅:
    StepExecutionDao