Package org.springframework.batch.core.repository.dao

Examples of org.springframework.batch.core.repository.dao.JdbcStepExecutionDao.afterPropertiesSet()


  protected StepExecutionDao createStepExecutionDao() throws Exception {
    JdbcStepExecutionDao dao = new JdbcStepExecutionDao();
    dao.setJdbcTemplate(jdbcOperations);
    dao.setStepExecutionIncrementer(incrementer);
    dao.setTablePrefix(tablePrefix);
    dao.afterPropertiesSet();
    return dao;
  }

  @Override
  public JobExplorer getObject() throws Exception {
View Full Code Here


    dao.setStepExecutionIncrementer(incrementerFactory.getIncrementer(databaseType, tablePrefix
        + "STEP_EXECUTION_SEQ"));
    dao.setTablePrefix(tablePrefix);
    dao.setClobTypeToUse(determineClobTypeToUse(this.databaseType));
    dao.setExitMessageLength(maxVarCharLength);
    dao.afterPropertiesSet();
    return dao;
  }

  @Override
  protected ExecutionContextDao createExecutionContextDao() throws Exception {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.