JProfiler 显示“未知” JDBC 调用花费了 40% 的时间
我正在使用 JProfiler 查看我的应用程序中使用 Hibernate 的所有 JDBC 调用。事实证明,前 2 个热点是“unknown
”和“select 1
”。有什么想法吗?
I am using JProfiler to view all the JDBC calls in my application that's using Hibernate. It turns out that the top 2 hot spots are "unknown
" and "select 1
". Any ideas what they are?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“select 1”是检查连接是否仍然有效。也可以是“从双中选择 1”或“选择 1+1”,具体取决于所使用的数据库。
The "select 1" is a check to see if the connection is still valid. Can also be "select 1 from dual" or "select 1+1" depending on database used.
添加到 Roger Lindsjö 的答案中,“未知”热点是 JProfiler 7.0.1 中已修复的错误。
Adding to Roger Lindsjö's answer, the "unknown" hot spot is a bug that has been fixed in JProfiler 7.0.1.