Class PoolableManagedConnectionFactory
- java.lang.Object
-
- org.apache.tomcat.dbcp.dbcp2.PoolableConnectionFactory
-
- org.apache.tomcat.dbcp.dbcp2.managed.PoolableManagedConnectionFactory
-
- All Implemented Interfaces:
PooledObjectFactory<PoolableConnection>
public class PoolableManagedConnectionFactory extends PoolableConnectionFactory
APoolableConnectionFactory
that createsPoolableManagedConnection
s.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description PoolableManagedConnectionFactory(XAConnectionFactory connFactory, javax.management.ObjectName dataSourceJmxName)
Creates a PoolableManagedConnectionFactory and attach it to a connection pool.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TransactionRegistry
getTransactionRegistry()
PooledObject<PoolableConnection>
makeObject()
Uses the configured XAConnectionFactory to create aPoolableManagedConnection
.-
Methods inherited from class org.apache.tomcat.dbcp.dbcp2.PoolableConnectionFactory
activateObject, destroyObject, destroyObject, getCacheState, getConnectionFactory, getConnectionIndex, getConnectionInitSqls, getDataSourceJmxName, getDataSourceJmxObjectName, getDefaultAutoCommit, getDefaultCatalog, getDefaultQueryTimeout, getDefaultQueryTimeoutDuration, getDefaultQueryTimeoutSeconds, getDefaultReadOnly, getDefaultSchema, getDefaultTransactionIsolation, getDisconnectionSqlCodes, getMaxConnDuration, getMaxConnLifetimeMillis, getMaxOpenPreparedStatements, getPool, getPoolStatements, getValidationQuery, getValidationQueryTimeoutDuration, getValidationQueryTimeoutSeconds, initializeConnection, isAutoCommitOnReturn, isEnableAutoCommitOnReturn, isFastFailValidation, isRollbackOnReturn, passivateObject, setAutoCommitOnReturn, setCacheState, setClearStatementPoolOnReturn, setConnectionInitSql, setDefaultAutoCommit, setDefaultCatalog, setDefaultQueryTimeout, setDefaultQueryTimeout, setDefaultReadOnly, setDefaultSchema, setDefaultTransactionIsolation, setDisconnectionSqlCodes, setEnableAutoCommitOnReturn, setFastFailValidation, setMaxConn, setMaxConnLifetimeMillis, setMaxOpenPreparedStatements, setMaxOpenPrepatedStatements, setPool, setPoolStatements, setRollbackOnReturn, setValidationQuery, setValidationQueryTimeout, setValidationQueryTimeout, validateConnection, validateObject
-
-
-
-
Constructor Detail
-
PoolableManagedConnectionFactory
public PoolableManagedConnectionFactory(XAConnectionFactory connFactory, javax.management.ObjectName dataSourceJmxName)
Creates a PoolableManagedConnectionFactory and attach it to a connection pool.- Parameters:
connFactory
- XAConnectionFactorydataSourceJmxName
- The data source name.
-
-
Method Detail
-
getTransactionRegistry
public TransactionRegistry getTransactionRegistry()
- Returns:
- The transaction registry.
- Since:
- 2.6.0
-
makeObject
public PooledObject<PoolableConnection> makeObject() throws java.lang.Exception
Uses the configured XAConnectionFactory to create aPoolableManagedConnection
. ThrowsIllegalStateException
if the connection factory returns null. Also initializes the connection using configured initialization SQL (if provided) and sets up a prepared statement pool associated with the PoolableManagedConnection if statement pooling is enabled.- Specified by:
makeObject
in interfacePooledObjectFactory<PoolableConnection>
- Overrides:
makeObject
in classPoolableConnectionFactory
- Returns:
- a
PooledObject
wrapping an instance that can be served by the pool - Throws:
java.lang.Exception
- if there is a problem creating a new instance, this will be propagated to the code requesting an object.
-
-