Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Java 中实现连接池?
有什么图案吗?
我应该使用一些连接并释放它。此连接应在几次后关闭。
您可以使用一些库。对于 JDBC 连接池,请查看bonecp、c3p0或dbcp。如果您需要通用池,请参阅构建dbcp的commons Pool。