org.apache.commons.dbcp2.managed
Class ManagedDataSource<C extends Connection>
- java.lang.Object
-
- org.apache.commons.dbcp2.PoolingDataSource<C>
-
- org.apache.commons.dbcp2.managed.ManagedDataSource<C>
-
- Type Parameters:
C
- The kind ofConnection
to manage.
- All Implemented Interfaces:
- AutoCloseable, Wrapper, CommonDataSource, DataSource
public class ManagedDataSource<C extends Connection> extends PoolingDataSource<C>
The ManagedDataSource is a PoolingDataSource that creates ManagedConnections.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor and Description ManagedDataSource(ObjectPool<C> pool, TransactionRegistry transactionRegistry)
Creates a ManagedDataSource which obtains connections from the specified pool and manages them using the specified transaction registry.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description Connection
getConnection()
Returns aConnection
from my pool, according to the contract specified byObjectPool.borrowObject()
.void
setTransactionRegistry(TransactionRegistry transactionRegistry)
Sets the transaction registry from the XAConnectionFactory used to create the pool.-
Methods inherited from class org.apache.commons.dbcp2.PoolingDataSource
close, getConnection, getLoginTimeout, getLogWriter, getParentLogger, getPool, isAccessToUnderlyingConnectionAllowed, isWrapperFor, setAccessToUnderlyingConnectionAllowed, setLoginTimeout, setLogWriter, unwrap
-
-
-
-
Constructor Detail
-
ManagedDataSource
public ManagedDataSource(ObjectPool<C> pool, TransactionRegistry transactionRegistry)
Creates a ManagedDataSource which obtains connections from the specified pool and manages them using the specified transaction registry. The TransactionRegistry must be the transaction registry obtained from the XAConnectionFactory used to create the connection pool. If not, an error will occur when attempting to use the connection in a global transaction because the XAResource object associated with the connection will be unavailable.- Parameters:
pool
- the connection pooltransactionRegistry
- the transaction registry obtained from the XAConnectionFactory used to create the connection pool object factory
-
-
Method Detail
-
setTransactionRegistry
public void setTransactionRegistry(TransactionRegistry transactionRegistry)
Sets the transaction registry from the XAConnectionFactory used to create the pool. The transaction registry can only be set once using either a connector or this setter method.- Parameters:
transactionRegistry
- the transaction registry acquired from the XAConnectionFactory used to create the pool
-
getConnection
public Connection getConnection() throws SQLException
Description copied from class:PoolingDataSource
Returns aConnection
from my pool, according to the contract specified byObjectPool.borrowObject()
.- Specified by:
getConnection
in interfaceDataSource
- Overrides:
getConnection
in classPoolingDataSource<C extends Connection>
- Throws:
SQLException
-
-