Victor
Victor

Reputation: 8480

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.

Upvotes: 2

Views: 990

Answers (1)

Tomasz Nurkiewicz
Tomasz Nurkiewicz

Reputation: 340708

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.

Upvotes: 6

Related Questions