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 :
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
tomcat-dbcp datasource class is : org.apache.tomcat.dbcp.dbcp.BasicDataSource commons-dbcp datasource class is : org.apache.commons.dbcp.BasicDataSource
The only difference between these two can be found in this blog. Do not know if the information is correct or not.
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?