Class CommonsDbcpDataSourcePoolMetadata
- java.lang.Object
- org.springframework.boot.autoconfigure.jdbc.metadata.AbstractDataSourcePoolMetadata<org.apache.commons.dbcp.BasicDataSource>
- org.springframework.boot.autoconfigure.jdbc.metadata.CommonsDbcpDataSourcePoolMetadata
- All Implemented Interfaces:
DataSourcePoolMetadata
@Deprecated public class CommonsDbcpDataSourcePoolMetadata extends AbstractDataSourcePoolMetadata<org.apache.commons.dbcp.BasicDataSource>
Deprecated.DataSourcePoolMetadatafor an Apache Commons DBCPDataSource.- Since:
- 1.2.0
Constructor Summary
Constructors Constructor Description CommonsDbcpDataSourcePoolMetadata(org.apache.commons.dbcp.BasicDataSource dataSource)Deprecated.
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description IntegergetActive()Deprecated.Return the current number of active connections that have been allocated from the data source ornullif that information is not available.IntegergetMax()Deprecated.Return the maximum number of active connections that can be allocated at the same time or-1if there is no limit.IntegergetMin()Deprecated.Return the minimum number of idle connections in the pool ornullif that information is not available.StringgetValidationQuery()Deprecated.Return the query to use to validate that a connection is valid ornullif that information is not available.Methods inherited from class org.springframework.boot.autoconfigure.jdbc.metadata.AbstractDataSourcePoolMetadata
getDataSource, getUsage
Constructor Detail
CommonsDbcpDataSourcePoolMetadata
public CommonsDbcpDataSourcePoolMetadata(org.apache.commons.dbcp.BasicDataSource dataSource)
Deprecated.
Method Detail
getActive
public Integer getActive()
Deprecated.Description copied from interface:DataSourcePoolMetadataReturn the current number of active connections that have been allocated from the data source ornullif that information is not available.- Returns:
- the number of active connections or
null
getMax
public Integer getMax()
Deprecated.Description copied from interface:DataSourcePoolMetadataReturn the maximum number of active connections that can be allocated at the same time or-1if there is no limit. Can also returnnullif that information is not available.- Returns:
- the maximum number of active connections or
null
getMin
public Integer getMin()
Deprecated.Description copied from interface:DataSourcePoolMetadataReturn the minimum number of idle connections in the pool ornullif that information is not available.- Returns:
- the minimum number of active connections or
null
getValidationQuery
public String getValidationQuery()
Deprecated.Description copied from interface:DataSourcePoolMetadataReturn the query to use to validate that a connection is valid ornullif that information is not available.- Returns:
- the validation query or
null