Package org.springframework.batch.item.database.support

Examples of org.springframework.batch.item.database.support.DataFieldMaxValueIncrementerFactory


    this.tablePrefix = tablePrefix;
  }

  @Override
  public void afterPropertiesSet() throws Exception {
    DataFieldMaxValueIncrementerFactory factory = new DefaultDataFieldMaxValueIncrementerFactory(dataSource);

    this.incremeter = factory.getIncrementer(DatabaseType.fromMetaData(dataSource).name(), tablePrefix + "JOB_SEQ");
  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.item.database.support.DataFieldMaxValueIncrementerFactory

Copyright © 2018 www.massapicom. 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.