我使用以下代码将最大活动连接数设置为 1:
ConnectionPool initializePool(DataSource dataSource) {
if (!(org.apache.tomcat.jdbc.pool.DataSource.class.isInstance(dataSource))) {
return null;
}
org.apache.tomcat.jdbc.pool.DataSource tomcatDataSource = (org.apache.tomcat.jdbc.pool.DataSource) dataSource;
final String poolName = tomcatDataSource.getName();
try {
ConnectionPool pool = tomcatDataSource.createPool();
pool.getPoolProperties().setMaxActive(1);
pool.getPoolProperties().setInitialSize(1);
pool.getPoolProperties().setTestOnBorrow(true);
return pool;
} catch (SQLException e) {
logger.info(String.format(" !--! creation of pool failed for %s", poolName), e);
}
return null;
}
现在使用线程,我已经打开了与 DB 的并发连接数。我还使用下面列出的代码打印了当前活动的连接数
System.out.println("Current Active Connections = " + ((org.apache.tomcat.jdbc.pool.DataSource) datasource).getActive());
System.out.println("Max Active Connections = " + ((org.apache.tomcat.jdbc.pool.DataSource) datasource).getMaxActive());
我看到类似于下面的结果。活动连接数显示为超过 1。但是我想将最大活动连接数限制为 1。我还需要设置其他参数吗?
当前活动连接数 = 9
最大活动连接数 = 1
编辑:但是,当我尝试使用 15 或 20 作为 max active 时,它总是分别限制为 15 或 20。