Skip to content
Advertisement

How configure connection existence check in C3P0?

I am using the below code to get Connection. I have used the c3p0 library for connection pooling.

JavaScript

Now my question is, this code is not checking whether the connection is existing or not. Most likely this will get hit by the famous connection closed error after 8 hours.

While I was using C3P0 with hibernate, there were configurations to test the connection and re-establish it. The config I did was below

JavaScript

How can I do the same connection test on checkout here, so I can use it in JDBC too?

Advertisement

Answer

There is a good section on configuring connection testing in the C3P0 documentation. Also, see the section on configuration override, in particular the precedence rules.

(In particular, the advice on using JDBC4 drivers which supports isValid() is good.)

In your code, you could simply add

JavaScript

to your DataSource constructor. Be sure that the query actually talks to the database, I seem to recall some driver implementations that didn’t actually go to the DB for certain queries of this kind 🙂

Cheers,

Advertisement