Examples of SpringJtaPlatform


Examples of org.springframework.boot.orm.jpa.hibernate.SpringJtaPlatform

  }

  private void configureJtaPlatform(Map<String, Object> vendorProperties) throws LinkageError {
    JtaTransactionManager jtaTransactionManager = getJtaTransactionManager();
    if (jtaTransactionManager != null) {
      vendorProperties.put(JTA_PLATFORM, new SpringJtaPlatform(
          jtaTransactionManager));
    }
    else {
      vendorProperties.put(JTA_PLATFORM, getNoJtaPlatformManager());
    }
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.