Java Code Examples for org.apache.commons.dbcp.BasicDataSource#getNumActive()

The following examples show how to use org.apache.commons.dbcp.BasicDataSource#getNumActive() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DbcpDatabasePropertiesReteriver.java    From compass with Apache License 2.0 5 votes vote down vote up
@Override
public int getConnectionsNumber(DataSource dataSource){
	try {
		BasicDataSource ds = (BasicDataSource)dataSource;
		return ds.getNumActive();
	} catch (Exception e) {
		if(logger.isDebugEnabled()){
			logger.debug(" query DBCP datasource="+dataSource+" connections number fail");
		}
		return IllegalNumber;
	}
}
 
Example 2
Source File: DbcpDatabasePropertiesReteriver.java    From compass with Apache License 2.0 5 votes vote down vote up
@Override
public int getBusyConnectionsNumber(DataSource dataSource) {
	try {
		BasicDataSource ds = (BasicDataSource)dataSource;
		return ds.getNumActive();
	} catch (Exception e) {
		if(logger.isDebugEnabled()){
			logger.debug(" query DBCP datasource="+dataSource+" busy connections number fail");
		}
		return IllegalNumber;
	}
}