c3po连接池的默认设置无法修改

时间:2018-12-29 11:04:41

标签: hibernate playframework connection-pooling

我正在使用c3p0进行连接池,试图更改连接使用期限,最大连接数,但无法正常工作

//以下设置是可选的-c3p0可以使用默认设置

comboPooleddataSource.setMinPoolSize(3);
comboPooleddataSource.setAcquireIncrement(2);
comboPooleddataSource.setMaxPoolSize(9);
comboPooleddataSource.setMaxIdleTime(3000);
comboPooleddataSource.setMaxConnectionAge(100);

我正在尝试改变上面的东西,但是没有生效

0 个答案:

没有答案