如何从Hibernate获取连接池信息?
可能的重复:
如何监控c3p0连接
如何获取数据库连接池信息,例如总连接数使用、剩余连接等?我需要此信息用于记录(故障排除)目的。我正在使用 Hibernate 和 C3P0。
Possible Duplicate:
How to monitor c3p0 connections
How can I get database connection pool information such as total connections in use, connection remaining etc ?. I want this information for logging (troubleshooting) purposes. I am using Hibernate with C3P0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们在上面使用了 getStatistics 和 getConnectCount ,但它没有任何特定的函数来显示当前打开的连接。 getConnectCount 显示打开的连接总数
We used getStatistics and getConnectCount on it, but it doesnt have any particular function to show current open connections. The getConnectCount displays the total number of connections opened
根据 文档。
Use
getStatistics()
method of yourSessionFactory
as per documentation.