我正在使用c3p0进行连接池,试图更改连接使用期限,最大连接数,但无法正常工作
//以下设置是可选的-c3p0可以使用默认设置
comboPooleddataSource.setMinPoolSize(3);
comboPooleddataSource.setAcquireIncrement(2);
comboPooleddataSource.setMaxPoolSize(9);
comboPooleddataSource.setMaxIdleTime(3000);
comboPooleddataSource.setMaxConnectionAge(100);
我正在尝试改变上面的东西,但是没有生效