Package org.springframework.boot.orm.jpa.hibernate

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

Related Classes of org.springframework.boot.orm.jpa.hibernate.SpringJtaPlatform

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.