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.
目前,我在每个 JSP/Servlet 中一次又一次地创建数据库连接。我想在我的 JSP/Servlet 项目中重用我的数据库连接。我怎样才能做到这一点?
做到这一点的“正确”方法是使用连接池。这样就减少了创建/关闭连接的开销。
除此之外,您做事的方式没有任何问题。长时间保持打开的连接通常不是一个好主意。
为了减少麻烦 - 您可以创建一个实用程序类,它从池中返回一个连接,并且同样具有将连接返回到池的方法。