Class PoolableManagedConnectionFactory
java.lang.Object
org.apache.tomcat.dbcp.dbcp2.PoolableConnectionFactory
org.apache.tomcat.dbcp.dbcp2.managed.PoolableManagedConnectionFactory
- All Implemented Interfaces:
PooledObjectFactory<PoolableConnection>
A
PoolableConnectionFactory
that creates PoolableManagedConnection
s.- Since:
- 2.0
-
Constructor Summary
ConstructorDescriptionPoolableManagedConnectionFactory
(XAConnectionFactory connFactory, ObjectName dataSourceJmxName) Creates a PoolableManagedConnectionFactory and attach it to a connection pool. -
Method Summary
Modifier and TypeMethodDescriptionUses 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 Details
-
PoolableManagedConnectionFactory
public PoolableManagedConnectionFactory(XAConnectionFactory connFactory, ObjectName dataSourceJmxName) Creates a PoolableManagedConnectionFactory and attach it to a connection pool.- Parameters:
connFactory
- XAConnectionFactorydataSourceJmxName
- The data source name.
-
-
Method Details
-
getTransactionRegistry
- Returns:
- The transaction registry.
- Since:
- 2.6.0
-
makeObject
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, not null. - Throws:
SQLException
-