Example usage for org.hibernate.engine.transaction.jta.platform.spi JtaPlatform interface-usage

List of usage examples for org.hibernate.engine.transaction.jta.platform.spi JtaPlatform interface-usage

Introduction

In this page you can find the example usage for org.hibernate.engine.transaction.jta.platform.spi JtaPlatform interface-usage.

Usage

From source file com.baomidou.hibernateplus.HibernateConfigurableJtaPlatform.java

/**
 * Implementation of Hibernate 5's JtaPlatform SPI, exposing passed-in {@link TransactionManager},
 * {@link UserTransaction} and {@link TransactionSynchronizationRegistry} references.
 *
 * @author Juergen Hoeller
 * @since 4.2

From source file org.infinispan.test.hibernate.cache.commons.functional.cluster.DualNodeJtaPlatformImpl.java

/**
 * @author Steve Ebersole
 */
public class DualNodeJtaPlatformImpl implements JtaPlatform, Configurable {
    private String nodeId;

From source file org.infinispan.test.hibernate.cache.commons.tm.JtaPlatformImpl.java

/**
 * @author Steve Ebersole
 */
public class JtaPlatformImpl implements JtaPlatform {
    @Override
    public TransactionManager retrieveTransactionManager() {

From source file org.infinispan.test.hibernate.cache.commons.util.BatchModeJtaPlatform.java

/**
 * @author Steve Ebersole
 */
public class BatchModeJtaPlatform implements JtaPlatform {
    @Override
    public TransactionManager retrieveTransactionManager() {

From source file org.infinispan.test.hibernate.cache.functional.cluster.DualNodeJtaPlatformImpl.java

/**
 * @author Steve Ebersole
 */
public class DualNodeJtaPlatformImpl implements JtaPlatform, Configurable {
    private String nodeId;

From source file org.infinispan.test.hibernate.cache.tm.JtaPlatformImpl.java

/**
 * @author Steve Ebersole
 */
public class JtaPlatformImpl implements JtaPlatform {
    @Override
    public TransactionManager retrieveTransactionManager() {

From source file org.infinispan.test.hibernate.cache.util.BatchModeJtaPlatform.java

/**
 * @author Steve Ebersole
 */
public class BatchModeJtaPlatform implements JtaPlatform {
    @Override
    public TransactionManager retrieveTransactionManager() {

From source file org.jadira.usertype.spi.jta.LocalTransactionManagerPlatform.java

/**
 * This is a generally useful implementation of Hibernate's JtaPlatform which delegates to a configurable Spring PlatformTransactionManager instance.
 * 
 * To use this class set the Hibernate / JTA property 'hibernate.transaction.jta.platform' to org.jadira.usertype.spi.jta.LocalTransactionManagerPlatform.
 * 
 * In addition this class must be used in conjunction with either {@link HibernateSessionFactoryBean} or {@link HibernateEntityManagerFactoryBean}. These are specialised subclasses of

From source file org.springframework.orm.hibernate5.ConfigurableJtaPlatform.java

/**
 * Implementation of Hibernate 5's JtaPlatform SPI, exposing passed-in {@link TransactionManager},
 * {@link UserTransaction} and {@link TransactionSynchronizationRegistry} references.
 *
 * @author Juergen Hoeller
 * @since 4.2