It seems there is a lot of confusion between these two connection pooling libraries. What I want to know is which one is better (if at all)?

Here are some points which I would like to put up ...Could someone please verify :

  1. tomcat dbcp - use the default tomcat-dbcp.jar which will be present in your tomcat/lib directory. You DO NOT need commons-dbcp or commons-pool libraries in your web-inf/lib. The db driver should be placed in tomcat/lib

  2. tomcat-dbcp datasource class is : org.apache.tomcat.dbcp.dbcp.BasicDataSource commons-dbcp datasource class is : org.apache.commons.dbcp.BasicDataSource

  3. The only difference between these two can be found in this blog. Do not know if the information is correct or not.

  4. The official tomcat documentation here on tomcat.apache.org /tomcat-7.0-doc/jndi-datasource-examples-howto.html#Installation mentions clearly that most classes have just been re-named & re-packaged.

So the question is which one to use & which one is better? Anyone has anything to share?

link|improve this question
feedback

2 Answers

tomcat-dbcp is just a renamed version of commons-dbcp, with also a different internal package name prefix.

At build time, Tomcat fetches the commons-dbcp sources (the version depends on the Tomcat version, for instance Tomcat 7.0.27 uses commons-dbcp 1.4), and does package name replacement (org.apache.commons -> org.apache.tomcat.dbcp) and builds the result as tomcat-dbcp.jar.

This is done so that the internal Tomcat JDBC pools never conflict with possible application uses of the commons-dbcp classes. This avoids many potential classloading issues.

link|improve this answer
feedback

Older versions of Apache Commons DBCP (i.e. version 1.2) had some nasty thread-safety issues under high load conditions, making it unsuitable for that kind of usage. It doesn't surprise me that the Tomcat folks re-worked it to fix these issues.

However, my understanding is that Commons DBCP 1.4 fixes these issues. I can't confirm that personally, but it may render the Tomcat version redundant.

Interestingly, SpringSource also rewrote Commons DBCP for their repackaged version of Tomcat (tc-Server), and they claim big performance benefits from it. They haven't open-sourced that, though.

link|improve this answer
1  
DBCP 1.4 is a big performance improvement over 1.2, and I haven't had any more deadlocks or thread-safety issues since I upgraded. – Chochos Jan 18 '11 at 19:54
@Chochos: Good to know. What sort of application was this for? – skaffman Jan 18 '11 at 19:56
A transactional switch, doing 200K+ daily operations. Lots of short 1-5 row queries, lots and lots of updates and inserts. – Chochos Jan 18 '11 at 22:49
feedback

Your Answer

 
or
required, but never shown

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