In the configuration below, if I missed the initial, maximum minimum pool size. What will be the default connection pool sizes in c3p0?
<bean class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close" id="dataSource"> <property name="driverClass" value="${dbDriver}"/> <property name="jdbcUrl" value="${dbURL}"/> <property name="user" value="${dbUsername}"/> <property name="password" value="${dbPassword}"/> <property name="initialPoolSize" value="5"/> <property name="maxPoolSize" value="50"/> <property name="minPoolSize" value="5"/> <property name="maxIdleTime" value="3000"/> </bean>
source share