Example usage for org.springframework.transaction PlatformTransactionManager interface-usage

List of usage examples for org.springframework.transaction PlatformTransactionManager interface-usage

Introduction

In this page you can find the example usage for org.springframework.transaction PlatformTransactionManager interface-usage.

Usage

From source file net.noctuasource.noctua.core.database.impl.TransactionManagerProxy.java

public class TransactionManagerProxy implements PlatformTransactionManager {

    private PlatformTransactionManager manager;

    public void setManager(PlatformTransactionManager manager) {
        this.manager = manager;

From source file cn.uncode.dal.internal.shards.transaction.MultiDataSourcesTransactionManager.java

public class MultiDataSourcesTransactionManager implements PlatformTransactionManager, InitializingBean {

    private final Log log = LogFactory.getLog(getClass());

    /* ?? */
    private List<DataSource> dataSources;

From source file org.makersoft.shards.transaction.MultiDataSourcesTransactionManager.java

/**
 * deprecated!!!
 *
 * please use spring-data ChainedTransactionManager
 *
 * @see org.springframework.data.transaction.ChainedTransactionManager

From source file bigbank.transaction.ChainedTransactionManager.java

/**
 * @author mh
 * @since 14.02.11
 */
public class ChainedTransactionManager implements PlatformTransactionManager {

From source file com.zhengmo.data.transaction.ChainedTransactionManager.java

/**
 * {@link PlatformTransactionManager} implementation that orchestrates transaction creation, commits and rollbacks to a list of delegates. Using this implementation assumes that errors causing a
 * transaction rollback will usually happen before the transaction completion or during the commit of the most inner {@link PlatformTransactionManager}.
 * <p />
 * The configured instances will start transactions in the order given and commit/rollback in <em>reverse</em> order, which means the {@link PlatformTransactionManager} most likely to break the
 * transaction should be the <em>last</em> in the list configured. A {@link PlatformTransactionManager} throwing an exception during commit will automatically cause the remaining transaction managers

From source file com.becool.base.spring.tx.ChainedTransactionManager.java

/**
 * {@link PlatformTransactionManager} implementation that orchestrates transaction creation, commits and rollbacks to a
 * list of delegates. Using this implementation assumes that errors causing a transaction rollback will usually happen
 * before the transaction completion or during the commit of the most inner {@link PlatformTransactionManager}.
 * <p />
 * The configured instances will start transactions in the order given and commit/rollback in <em>reverse</em> order,

From source file org.danielli.xultimate.transaction.ChainedTransactionManager.java

/**
 * {@link PlatformTransactionManager} implementation that orchestrates transaction creation, commits and rollbacks to a
 * list of delegates. Using this implementation assumes that errors causing a transaction rollback will usually happen
 * before the transaction completion or during the commit of the most inner {@link PlatformTransactionManager}.
 * <p />
 * The configured instances will start transactions in the order given and commit/rollback in <em>reverse</em> order,

From source file org.apache.servicemix.transaction.GeronimoPlatformTransactionManager.java

/**
 */
public class GeronimoPlatformTransactionManager extends GeronimoTransactionManager
        implements PlatformTransactionManager {

    private final PlatformTransactionManager platformTransactionManager;

From source file com.yimidida.shards.transaction.MultiDataSourcesTransactionManager.java

/**
 * deprecated!!!
 *
 * please use spring-data ChainedTransactionManager
 *
 * @see org.springframework.data.transaction.ChainedTransactionManager

From source file de.faustedition.db.ChainedTransactionManager.java

/**
 * @author mh
 * @since 14.02.11
 */
public class ChainedTransactionManager implements PlatformTransactionManager {