C3P0 Connection Pool

2

I have the following properties in my Hibernate XML for Connection Pool taken from the internet:

  <property name="hibernate.c3p0.min_size" value="4"/>
  <property name="hibernate.c3p0.max_size" value="4"/>
  <property name="hibernate.c3p0.timeout" value="300"/>
  <property name="hibernate.c3p0.max_statements" value="50"/>
  <property name="hibernate.c3p0.idle_test_period" value="3000"/>

But I'm not sure how to configure such properties based on my bank settings.

What should I take into account to configure each of the properties?

    
asked by anonymous 24.05.2016 / 13:54

0 answers