Example usage for org.springframework.batch.core.repository.dao JdbcJobExecutionDao JdbcJobExecutionDao

List of usage examples for org.springframework.batch.core.repository.dao JdbcJobExecutionDao JdbcJobExecutionDao

Introduction

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

Prototype

JdbcJobExecutionDao

Source Link

Usage

From source file:org.springframework.batch.core.repository.support.JobRepositoryFactoryBean.java

@Override
protected JobExecutionDao createJobExecutionDao() throws Exception {
    JdbcJobExecutionDao dao = new JdbcJobExecutionDao();
    dao.setJdbcTemplate(jdbcOperations);
    dao.setJobExecutionIncrementer(//from   ww  w . java2 s . c  om
            incrementerFactory.getIncrementer(databaseType, tablePrefix + "JOB_EXECUTION_SEQ"));
    dao.setTablePrefix(tablePrefix);
    dao.setClobTypeToUse(determineClobTypeToUse(this.databaseType));
    dao.setExitMessageLength(maxVarCharLength);
    dao.afterPropertiesSet();
    return dao;
}