Search code examples
javaconnectionconnection-poolingdesign-patternspool

Connection pooling pattern


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.


Solution

  • You can use some libraries. For JDBC connection pooling check out , or . If you need a general purpose pooling, see commons Pool, which is built on.