Class PoolableConnectionFactory
- java.lang.Object
-
- org.apache.tomcat.dbcp.dbcp2.PoolableConnectionFactory
-
- All Implemented Interfaces:
PooledObjectFactory<PoolableConnection>
- Direct Known Subclasses:
PoolableManagedConnectionFactory
public class PoolableConnectionFactory extends java.lang.Object implements PooledObjectFactory<PoolableConnection>
APooledObjectFactorythat createsPoolableConnections.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description PoolableConnectionFactory(ConnectionFactory connFactory, javax.management.ObjectName dataSourceJmxObjectName)Creates a newPoolableConnectionFactory.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidactivateObject(PooledObject<PoolableConnection> p)Reinitializes an instance to be returned by the pool.voiddestroyObject(PooledObject<PoolableConnection> p)Destroys an instance no longer needed by the pool.protected booleangetCacheState()protected ConnectionFactorygetConnectionFactory()protected java.util.concurrent.atomic.AtomicLonggetConnectionIndex()protected javax.management.ObjectNamegetDataSourceJmxName()java.lang.IntegergetDefaultQueryTimeout()java.util.Collection<java.lang.String>getDisconnectionSqlCodes()SQL_STATE codes considered to signal fatal conditions.protected intgetMaxOpenPreparedStatements()ObjectPool<PoolableConnection>getPool()Returns theObjectPoolin whichConnections are pooled.protected booleangetPoolStatements()protected voidinitializeConnection(java.sql.Connection conn)booleanisEnableAutoCommitOnReturn()booleanisFastFailValidation()True means that validation will fail immediately for connections that have previously thrown SQLExceptions with SQL_STATE indicating fatal disconnection errors.booleanisRollbackOnReturn()PooledObject<PoolableConnection>makeObject()Creates an instance that can be served by the pool and wrap it in aPooledObjectto be managed by the pool.voidpassivateObject(PooledObject<PoolableConnection> p)Uninitializes an instance to be returned to the idle object pool.voidsetCacheState(boolean cacheState)voidsetConnectionInitSql(java.util.Collection<java.lang.String> connectionInitSqls)Sets the SQL statements I use to initialize newly createdConnections.voidsetDefaultAutoCommit(java.lang.Boolean defaultAutoCommit)Sets the default "auto commit" setting for borrowedConnectionsvoidsetDefaultCatalog(java.lang.String defaultCatalog)Sets the default "catalog" setting for borrowedConnectionsvoidsetDefaultQueryTimeout(java.lang.Integer defaultQueryTimeoutSeconds)voidsetDefaultReadOnly(java.lang.Boolean defaultReadOnly)Sets the default "read only" setting for borrowedConnectionsvoidsetDefaultSchema(java.lang.String defaultSchema)Sets the default "schema" setting for borrowedConnectionsvoidsetDefaultTransactionIsolation(int defaultTransactionIsolation)Sets the default "Transaction Isolation" setting for borrowedConnectionsvoidsetDisconnectionSqlCodes(java.util.Collection<java.lang.String> disconnectionSqlCodes)voidsetEnableAutoCommitOnReturn(boolean enableAutoCommitOnReturn)voidsetFastFailValidation(boolean fastFailValidation)voidsetMaxConnLifetimeMillis(long maxConnLifetimeMillis)Sets the maximum lifetime in milliseconds of a connection after which the connection will always fail activation, passivation and validation.voidsetMaxOpenPreparedStatements(int maxOpenPreparedStatements)Sets the maximum number of open prepared statements.voidsetMaxOpenPrepatedStatements(int maxOpenPreparedStatements)Deprecated.voidsetPool(ObjectPool<PoolableConnection> pool)Sets theObjectPoolin which to poolConnections.voidsetPoolStatements(boolean poolStatements)voidsetRollbackOnReturn(boolean rollbackOnReturn)voidsetValidationQuery(java.lang.String validationQuery)Sets the query I use tovalidateConnections.voidsetValidationQueryTimeout(int validationQueryTimeoutSeconds)Sets the validation query timeout, the amount of time, in seconds, that connection validation will wait for a response from the database when executing a validation query.voidvalidateConnection(PoolableConnection conn)booleanvalidateObject(PooledObject<PoolableConnection> p)Ensures that the instance is safe to be returned by the pool.
-
-
-
Constructor Detail
-
PoolableConnectionFactory
public PoolableConnectionFactory(ConnectionFactory connFactory, javax.management.ObjectName dataSourceJmxObjectName)
Creates a newPoolableConnectionFactory.- Parameters:
connFactory- theConnectionFactoryfrom which to obtain baseConnectionsdataSourceJmxObjectName- The JMX object name, may be null.
-
-
Method Detail
-
setValidationQuery
public void setValidationQuery(java.lang.String validationQuery)
Sets the query I use tovalidateConnections. Should return at least one row. If not specified,Connection.isValid(int)will be used to validate connections.- Parameters:
validationQuery- a query to use tovalidateConnections.
-
setValidationQueryTimeout
public void setValidationQueryTimeout(int validationQueryTimeoutSeconds)
Sets the validation query timeout, the amount of time, in seconds, that connection validation will wait for a response from the database when executing a validation query. Use a value less than or equal to 0 for no timeout.- Parameters:
validationQueryTimeoutSeconds- new validation query timeout value in seconds
-
setConnectionInitSql
public void setConnectionInitSql(java.util.Collection<java.lang.String> connectionInitSqls)
Sets the SQL statements I use to initialize newly createdConnections. Usingnullturns off connection initialization.- Parameters:
connectionInitSqls- SQL statement to initializeConnections.
-
setPool
public void setPool(ObjectPool<PoolableConnection> pool)
Sets theObjectPoolin which to poolConnections.- Parameters:
pool- theObjectPoolin which to pool thoseConnections
-
getPool
public ObjectPool<PoolableConnection> getPool()
Returns theObjectPoolin whichConnections are pooled.- Returns:
- the connection pool
-
setDefaultReadOnly
public void setDefaultReadOnly(java.lang.Boolean defaultReadOnly)
Sets the default "read only" setting for borrowedConnections- Parameters:
defaultReadOnly- the default "read only" setting for borrowedConnections
-
setDefaultAutoCommit
public void setDefaultAutoCommit(java.lang.Boolean defaultAutoCommit)
Sets the default "auto commit" setting for borrowedConnections- Parameters:
defaultAutoCommit- the default "auto commit" setting for borrowedConnections
-
setDefaultTransactionIsolation
public void setDefaultTransactionIsolation(int defaultTransactionIsolation)
Sets the default "Transaction Isolation" setting for borrowedConnections- Parameters:
defaultTransactionIsolation- the default "Transaction Isolation" setting for returnedConnections
-
setDefaultCatalog
public void setDefaultCatalog(java.lang.String defaultCatalog)
Sets the default "catalog" setting for borrowedConnections- Parameters:
defaultCatalog- the default "catalog" setting for borrowedConnections
-
setDefaultSchema
public void setDefaultSchema(java.lang.String defaultSchema)
Sets the default "schema" setting for borrowedConnections- Parameters:
defaultSchema- the default "schema" setting for borrowedConnections- Since:
- 2.5.0
-
setCacheState
public void setCacheState(boolean cacheState)
-
setPoolStatements
public void setPoolStatements(boolean poolStatements)
-
setMaxOpenPrepatedStatements
@Deprecated public void setMaxOpenPrepatedStatements(int maxOpenPreparedStatements)
Deprecated.Deprecated due to typo in method name.- Parameters:
maxOpenPreparedStatements- The maximum number of open prepared statements.
-
setMaxOpenPreparedStatements
public void setMaxOpenPreparedStatements(int maxOpenPreparedStatements)
Sets the maximum number of open prepared statements.- Parameters:
maxOpenPreparedStatements- The maximum number of open prepared statements.
-
setMaxConnLifetimeMillis
public void setMaxConnLifetimeMillis(long maxConnLifetimeMillis)
Sets the maximum lifetime in milliseconds of a connection after which the connection will always fail activation, passivation and validation. A value of zero or less indicates an infinite lifetime. The default value is -1.- Parameters:
maxConnLifetimeMillis- The maximum lifetime in milliseconds.
-
isEnableAutoCommitOnReturn
public boolean isEnableAutoCommitOnReturn()
-
setEnableAutoCommitOnReturn
public void setEnableAutoCommitOnReturn(boolean enableAutoCommitOnReturn)
-
isRollbackOnReturn
public boolean isRollbackOnReturn()
-
setRollbackOnReturn
public void setRollbackOnReturn(boolean rollbackOnReturn)
-
getDefaultQueryTimeout
public java.lang.Integer getDefaultQueryTimeout()
-
setDefaultQueryTimeout
public void setDefaultQueryTimeout(java.lang.Integer defaultQueryTimeoutSeconds)
-
getDisconnectionSqlCodes
public java.util.Collection<java.lang.String> getDisconnectionSqlCodes()
SQL_STATE codes considered to signal fatal conditions.Overrides the defaults in
Utils.DISCONNECTION_SQL_CODES(plus anything starting withUtils.DISCONNECTION_SQL_CODE_PREFIX). If this property is non-null andisFastFailValidation()istrue, whenever connections created by this factory generate exceptions with SQL_STATE codes in this list, they will be marked as "fatally disconnected" and subsequent validations will fail fast (no attempt at isValid or validation query).If
isFastFailValidation()isfalsesetting this property has no effect.- Returns:
- SQL_STATE codes overriding defaults
- Since:
- 2.1
-
setDisconnectionSqlCodes
public void setDisconnectionSqlCodes(java.util.Collection<java.lang.String> disconnectionSqlCodes)
- Parameters:
disconnectionSqlCodes- The disconnection SQL codes.- Since:
- 2.1
- See Also:
getDisconnectionSqlCodes()
-
isFastFailValidation
public boolean isFastFailValidation()
True means that validation will fail immediately for connections that have previously thrown SQLExceptions with SQL_STATE indicating fatal disconnection errors.- Returns:
- true if connections created by this factory will fast fail validation.
- Since:
- 2.1, 2.5.0 Defaults to true, previous versions defaulted to false.
- See Also:
setDisconnectionSqlCodes(Collection)
-
setFastFailValidation
public void setFastFailValidation(boolean fastFailValidation)
- Parameters:
fastFailValidation- true means connections created by this factory will fast fail validation- Since:
- 2.1
- See Also:
isFastFailValidation()
-
makeObject
public PooledObject<PoolableConnection> makeObject() throws java.lang.Exception
Description copied from interface:PooledObjectFactoryCreates an instance that can be served by the pool and wrap it in aPooledObjectto be managed by the pool.- Specified by:
makeObjectin interfacePooledObjectFactory<PoolableConnection>- Returns:
- a
PooledObjectwrapping 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.
-
initializeConnection
protected void initializeConnection(java.sql.Connection conn) throws java.sql.SQLException- Throws:
java.sql.SQLException
-
destroyObject
public void destroyObject(PooledObject<PoolableConnection> p) throws java.lang.Exception
Description copied from interface:PooledObjectFactoryDestroys an instance no longer needed by the pool.It is important for implementations of this method to be aware that there is no guarantee about what state
objwill be in and the implementation should be prepared to handle unexpected errors.Also, an implementation must take in to consideration that instances lost to the garbage collector may never be destroyed.
- Specified by:
destroyObjectin interfacePooledObjectFactory<PoolableConnection>- Parameters:
p- aPooledObjectwrapping the instance to be destroyed- Throws:
java.lang.Exception- should be avoided as it may be swallowed by the pool implementation.- See Also:
PooledObjectFactory.validateObject(org.apache.tomcat.dbcp.pool2.PooledObject<T>),ObjectPool.invalidateObject(T)
-
validateObject
public boolean validateObject(PooledObject<PoolableConnection> p)
Description copied from interface:PooledObjectFactoryEnsures that the instance is safe to be returned by the pool.- Specified by:
validateObjectin interfacePooledObjectFactory<PoolableConnection>- Parameters:
p- aPooledObjectwrapping the instance to be validated- Returns:
falseifobjis not valid and should be dropped from the pool,trueotherwise.
-
validateConnection
public void validateConnection(PoolableConnection conn) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
passivateObject
public void passivateObject(PooledObject<PoolableConnection> p) throws java.lang.Exception
Description copied from interface:PooledObjectFactoryUninitializes an instance to be returned to the idle object pool.- Specified by:
passivateObjectin interfacePooledObjectFactory<PoolableConnection>- Parameters:
p- aPooledObjectwrapping the instance to be passivated- Throws:
java.lang.Exception- if there is a problem passivatingobj, this exception may be swallowed by the pool.- See Also:
PooledObjectFactory.destroyObject(org.apache.tomcat.dbcp.pool2.PooledObject<T>)
-
activateObject
public void activateObject(PooledObject<PoolableConnection> p) throws java.lang.Exception
Description copied from interface:PooledObjectFactoryReinitializes an instance to be returned by the pool.- Specified by:
activateObjectin interfacePooledObjectFactory<PoolableConnection>- Parameters:
p- aPooledObjectwrapping the instance to be activated- Throws:
java.lang.Exception- if there is a problem activatingobj, this exception may be swallowed by the pool.- See Also:
PooledObjectFactory.destroyObject(org.apache.tomcat.dbcp.pool2.PooledObject<T>)
-
getConnectionFactory
protected ConnectionFactory getConnectionFactory()
-
getPoolStatements
protected boolean getPoolStatements()
-
getMaxOpenPreparedStatements
protected int getMaxOpenPreparedStatements()
-
getCacheState
protected boolean getCacheState()
-
getDataSourceJmxName
protected javax.management.ObjectName getDataSourceJmxName()
-
getConnectionIndex
protected java.util.concurrent.atomic.AtomicLong getConnectionIndex()
-
-