java connection pool

I am looking for a good java connection pooling class.Do you know of any?
[87 byte] By [ujavasuna] at [2007-10-3 3:10:38]
# 1
http://jakarta.apache.org/commons/dbcp/If you're building a webapp you may find your appserver already pools the connections issued by the datasource anyway.
dcmintera at 2007-7-14 21:01:25 > top of Java-index,Java Essentials,Java Programming...
# 2
there are no source codes provided in your example.It'd be nice to get the source codes.How is the pool in Java Tutorial 8 http://java.sun.com/developer/onlineTraining/Programming/JDCBook/conpool.html
ujavasuna at 2007-7-14 21:01:25 > top of Java-index,Java Essentials,Java Programming...
# 3
1. The Jakarta Commons DBCP is open source. All of the source code is available.2. That's a tutorial example. Please don't use it in a real application.3. Don't compile the connection pool into your application. That's what JAR files are for.
dcmintera at 2007-7-14 21:01:25 > top of Java-index,Java Essentials,Java Programming...
# 4
any guidance on how to use it would be helpful.This looks complicated.thx
ujavasuna at 2007-7-14 21:01:25 > top of Java-index,Java Essentials,Java Programming...
# 5
do you have any code examples on how to use dbcp.thanks
ujavasuna at 2007-7-14 21:01:25 > top of Java-index,Java Essentials,Java Programming...
# 6
Follow the link. There are plenty of examples up there.
dcmintera at 2007-7-14 21:01:25 > top of Java-index,Java Essentials,Java Programming...
# 7

Hi All,

Connection pooling Mechanism is not that much of tuff as you peoples are thinking. It is very simple,if we do that care fully.

The main thing is involved in Configuration of Server.xml , web.xml and loading the proper Driver thats all.

Try it, donot became lazy.I was also trying the same for 3 days without becaming lazy, finally i got the solution for that. The main things are involved in above what i mentioned, just check those thing care fully.

So, dont invite failure .Trying Trying.....

All the best,

Amjada at 2007-7-14 21:01:25 > top of Java-index,Java Essentials,Java Programming...