Configure c3p0 Connection Pool in Hibernate

Normally, opening a connection to a database consumes more time than executing an SQL statement. Connection pools can help to reuse some connections without creating the connections frequently. In DAO layer, it will help to improve your system performance.

Hibernate can use an application server’s built-in connection pool via JNDI datasource binding, or use c3p0, DBCP, Proxool etc. It is easy to provide connection pool support when using Hibernate. However, if something is not configured in a right way, you might receive the error like below frequently (assuming you are using MySQL database and its default wait_timeout = 8 hours).

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: The last packet successfully received from the server was 39,601,006 milliseconds ago. The last packet sent successfully to the server was 39,601,006 milliseconds ago. is longer than the server configured value of 'wait_timeout'. You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property 'autoReconnect=true' to avoid this problem.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance (NativeConstructorAccessorImpl.java:57)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance (DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1117)

If you run into the issue, one possible reason is the connection pool configuration. When a long connection was not refreshed by a pool (long idle time), and next time the application may still use the old connection. If the connection time is greater than MySQL wait_timeout value, exception may happen.

Here we will talk about how to configure c3p0 connection pool to avoid such kind of issue.

1. Add the right jars to your project
Assuming we are using Hibernate 4.3.8, please make sure c3p0-0.9.2.1.jar added. Another mistake may happen. Many people may forget adding hibernate-c3p0-4.3.8.Final.jar and mchange-commons-java-0.2.3.4.jar into project. If those two jars are missed, Hibernate will use its internal connection pool implementation which will cause the issue. If you don’t enable Hibernate log, you will not know if c3p0 is used. (Try it, and set hibernate log level to info, and you can see what happens)

2. Hibernate Configuration
Here it is a sample configuration file hibernate.cfg.xml

c3p0.min_size: Hibernate default value is 1
c3p0.max_size: Hibernate default value is 100
c3p0.timeout:The default value in Hibernate is 0. The unit is second. The seconds a Connection can remain pooled but unused before being discarded. Zero means idle connections never expire [JBoss].
c3p0.idle_test_period: The default value in Hibernate is 0. If this is a number greater than 0, c3p0 will test all idle, pooled but unchecked-out connections, every this number of seconds [JBoss].
Other parameters not in the sample:
c3p0.max_statements: default value is 0. It will tell us the size of c3p0’s PreparedStatement cache.
c3p0.acquire_increment: default value is 1. It will tell c3p0 how many connections at a time to acquire when the pool is exhausted.

More information of c3p0 can be found at c3p0 site.

Sample connections:

coeenction_pool

Share on FacebookShare on Google+Tweet about this on TwitterShare on LinkedInShare on RedditShare on StumbleUponEmail this to someoneShare on TumblrDigg this

One thought on “Configure c3p0 Connection Pool in Hibernate

Leave a Reply to Greg Burns Cancel reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">