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.
我对本教程很感兴趣:BalusC 代码:DAO 教程 - 在 JSP/Servlet 中使用 如何将连接池与此代码一起应用?代码会有什么变化?
我不确定 Tomcat,但至少像 GlassFish 这样的应用程序服务器集成了连接池功能。您只需要在管理界面中配置连接详细信息。然后在您的 EJB 中使用:
@PersistenceContext private EntityManager em;
容器将负责连接池。