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?
|
feedback
|
|
There are 2 ways to "solve" this, though both have some issues:
| |||
|
feedback
|
|
Would
| |||||||||
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. | |||||||||
feedback
|
connection.close()in thefinallyblock of thetryblock as you acquired it? Everywhere? Really? Yes? – BalusC Mar 30 '10 at 20:37