Reputation: 8480
How can I implement a connection pooling in Java?
There is some pattern?
I should use some connections and release it. This connection should be closed after a few times.
Upvotes: 2
Views: 990
Reputation: 340708
You can use some libraries. For JDBC connection pooling check out bonecp, c3p0 or dbcp. If you need a general purpose pooling, see commons Pool, which dbcp is built on.
Upvotes: 6