Hi all,
I am using Hibernate framework in my project. This is my configuration in my "hibernate.cfg. xml" file.
But i want to know the free "Pool" size at some moment. How can i do it?
I am using Hibernate framework in my project. This is my configuration in my "hibernate.cfg. xml" file.
Code:
<property name="hibernate.c3p0.max_size">25</property> <property name="hibernate.c3p0.min_size">3</property> <property name="hibernate.c3p0.timeout">5000</property> <!-- seconds --> <property name="hibernate.c3p0.max_statements">0</property> <property name="hibernate.c3p0.acquire_increment">3</property> <property name="hibernate.c3p0.validate">true</property>
Comment