public class DbcpDataSourcePoolMetadata extends AbstractDataSourcePoolMetadata<org.apache.commons.dbcp2.BasicDataSource>
DataSourcePoolMetadata for a DBCP BasicDataSource.
 NOTICE: Forked from Spring Boot.| Constructor and Description | 
|---|
DbcpDataSourcePoolMetadata(org.apache.commons.dbcp2.BasicDataSource dataSource)
DBCP typed  
DataSourcePoolMetadata object. | 
| Modifier and Type | Method and Description | 
|---|---|
Integer | 
getActive()
Return the current number of active connections that have been allocated from the
 data source or  
null if that information is not available. | 
Boolean | 
getDefaultAutoCommit()
The default auto-commit state of connections created by this pool. 
 | 
Integer | 
getIdle()
Return the number of idle connections in the pool. 
 | 
Integer | 
getMax()
Return the maximum number of active connections that can be allocated at the same
 time or  
-1 if there is no limit. | 
Integer | 
getMin()
Return the minimum number of idle connections in the pool or  
null if that
 information is not available. | 
String | 
getValidationQuery()
Return the query to use to validate that a connection is valid or  
null if
 that information is not available. | 
getDataSource, getUsagepublic DbcpDataSourcePoolMetadata(org.apache.commons.dbcp2.BasicDataSource dataSource)
DataSourcePoolMetadata object.dataSource - The datasourcepublic Integer getIdle()
DataSourcePoolMetadatapublic Integer getActive()
DataSourcePoolMetadatanull if that information is not available.nullpublic Integer getMax()
DataSourcePoolMetadata-1 if there is no limit. Can also return null if that
 information is not available.nullpublic Integer getMin()
DataSourcePoolMetadatanull if that
 information is not available.nullpublic String getValidationQuery()
DataSourcePoolMetadatanull if
 that information is not available.nullpublic Boolean getDefaultAutoCommit()
DataSourcePoolMetadatanull), default is JDBC driver default (If set to null then the
 java.sql.Connection.setAutoCommit(boolean) method will not be called.)null