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.
在另一个连接池中获得另一个连接之前,如何确保我已经关闭了一个连接池中的连接?
调用 close() 方法将确保您的连接已释放。您还可以在使用连接的对象的 finalize() 方法中添加对 close() 方法的调用,以便在某个时间点确定释放连接,尽管建议不要依赖 finalize() 方法..