Examples of AutoCommitTransactionManager


Examples of com.avaje.ebeaninternal.server.transaction.AutoCommitTransactionManager

   * Create the TransactionManager taking into account autoCommit mode.
   */
  private TransactionManager createTransactionManager() {
   
    if (isAutoCommitMode()) {
      return new AutoCommitTransactionManager(clusterManager, backgroundExecutor, serverConfig, beanDescriptorManager, this.getBootupClasses());
    }
   
    return new TransactionManager(clusterManager, backgroundExecutor, serverConfig, beanDescriptorManager, this.getBootupClasses());
  }
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.