I have a DBCP connection pool in Tomcat. The problem is that when the connection is lost briefly the appliction is broken because DBCP won't try to reconnect again later when there is a connection. Can I get DBCP to reconnect automatically?

link|improve this question
To be sure, do you call connection.close() in the finally block of the try block as you acquired it? Everywhere? Really? Yes? – BalusC Mar 30 '10 at 20:37
feedback

3 Answers

There are 2 ways to "solve" this, though both have some issues:

  1. You can use a "validationQuery" (see below) to have a test query run before you go (generally something like 'select 1 from dual' which will be used to test connections before/after you get/give them to the pool. This adds an extra call per connection request from the pool. See: http://wiki.apache.org/commons/DBCP

  2. Instead of doing this per query, you can have the idleEvictorThread do it by setting testWhileIdle, though in some versions that thread can cause deadlocking under high-load. See: http://commons.apache.org/dbcp/configuration.html for more details on that and other options

link|improve this answer
feedback

Would autoReconnect=true do the job when added to the connection string?

jdbc:mysql://localhost:3306/appfuse?autoReconnect=true -> jdbc:db2:appfuse
link|improve this answer
Is this only for MySQL? – wesley Mar 30 '10 at 20:12
Yes, that's a mysql thing – nos Mar 30 '10 at 20:15
1  
Oh sorry, I saw the db2 after -> and thought this would work... didn't see the mysql... I won't delete this answer because someone may find this question looking for autoreconnect problem. – Leniel Macaferi Mar 30 '10 at 20:34
feedback

Don't think DBCP does that, but BoneCP (http://jolbox.com) can be configured to automatically replay any transactions when the DB or network goes down. It's completely transparent to your application.

link|improve this answer
1  
How to configure this? – Alex Siman Aug 25 '11 at 14:03
1  
Check out the transactionReplay feature. Don't use this with Hibernate though (they have bugs) – user149789 Sep 12 '11 at 15:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.