Spring 连接池休眠
如何使用 Spring 和 Hibernate 配置连接池?
谢谢维努
How to configure connection pooling with Spring and Hibernate?
Thanks
Venu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 Spring 和 Hibernate 配置连接池?
谢谢维努
How to configure connection pooling with Spring and Hibernate?
Thanks
Venu
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
您可以使用 DBCP 组件
You can use DBCP component
在 Hibernate 中,您可以在 Hibernate 中配置 CP30 连接池。在此处查看教程 。
IBM 有一个很好的教程,介绍如何将 Hibernate 与 Spring 集成。
In Hibernate, you can configure CP30 Connection Pooling in Hibernate. View a tutorial here.
IBM has a good tutorial on how to integrate Hibernate with Spring.
如果您想使用所有 Java 连接池提供程序中最好的,请尝试 HikariCP。
在 servlet-context 中使用 HikariCP 配置数据源 bean,如下所示:
然后使用此数据源创建 EntityManagerFactory bean。
If you want to use Best among all Java Connection Pool providers try HikariCP.
Configure a datasource bean using HikariCP in servlet-context as:
Then use this datasource to create EntityManagerFactory bean.
如果您在 Web 应用程序容器中运行,请使用容器的内置连接池。
否则,使用 Apache DBCP: http://commons.apache.org/dbcp/
If you're running in a web application container, use the built-in connection pooling of your container.
Otherwise, use Apache DBCP: http://commons.apache.org/dbcp/