Interface TransactionManagerFactory

All Known Implementing Classes:
DefaultTransactionManagerFactory

public interface TransactionManagerFactory
A factory interface for creating instances of TransactionManager.

Implementations of this interface are responsible for providing customized TransactionManager instances configured with a specific DataSource.

  • Method Summary

    Modifier and Type
    Method
    Description
    create(DataSource dataSource)
    Creates a new transaction manager instance.
  • Method Details

    • create

      TransactionManager create(DataSource dataSource)
      Creates a new transaction manager instance.
      Parameters:
      dataSource - the data source to use for transactions
      Returns:
      a new transaction manager instance