Eclipse 中的 Java 分析 - 调用堆栈

发布于 2024-12-09 02:27:53 字数 66 浏览 0 评论 0原文

有谁知道同时用于调用堆栈和线程的良好分析器。 也许可以放慢速度来真正了解这些线程上发生的事情、等待对象、同步方法等等。

Does anywone know a good profiler for call stack and thread in the same time.
maybe something that can be slowed down to really see whats happening on those threads, waits on objects, synchronized metods and so on..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

╰沐子 2024-12-16 02:27:53

尝试 VisualVM - 它是免费的且功能丰富。但不如 JProfiler - 伟大的 Java 分析工具!它可以用代码和虚拟机完成您能想象到的所有事情(以及您无法想象的事情)。但它的价格是 499 美元。

Try VisualVM - it is free and rich-featured. But not as much as JProfiler - greates Java profiler tool! It can do everything you can imagine with your code and VM (and things you cannot imagine too). But it costs 499$.

甜扑 2024-12-16 02:27:53

请尝试以下

操作说明,将内置分析数据库切换为较新版本

  1. 关闭 Eclipse IDE
  2. 浏览到 your-workspace-folder/.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2
  3. 复制所有文件在此文件夹下复制到另一个位置作为备份
  4. ,并删除所有带有 .db 扩展名的文件
  5. 从此 链接
  6. 转到 your-eclipse-folder\plugins\ 并找到类似 org.h2_1.1.117.v201105142352.jar 的文件,并将其复制到某个位置作为备份,
  7. 解压下载的 zip 文件步骤5
  8. 你会在h2\bin\文件夹下找到文件h2-1.3.170.jar,
  9. 将h2-1.3.170.jar重命名为步骤 6 中的文件名是 org.h2_1.1.117.v201105142352.jar
  10. 之后,您可以将步骤 9 中重命名的文件放入文件夹 your-eclipse-folder\plugins\
  11. 您可以尝试启动您的 eclipse

请告诉我如果这会让你的 eclipse 运行得更快

please try this

following is the instructions to switch built in profiling database with newer version

  1. close your eclipse ide
  2. browse to your-workspace-folder/.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2
  3. copy all files under this folder to another location as a backup
  4. and delete all files with .db extension
  5. download latest version of H2 database for All Platforms zip from this link
  6. goto your-eclipse-folder\plugins\ and find the file something like org.h2_1.1.117.v201105142352.jar and copy it to some place as a backup
  7. extract the zip file downloaded on step 5
  8. you will find the file h2-1.3.170.jar under h2\bin\ folder
  9. rename h2-1.3.170.jar to the file name from the step 6 which is org.h2_1.1.117.v201105142352.jar
  10. after this you can put the file renamed in step 9 into the folder your-eclipse-folder\plugins\
  11. you can try to start your eclipse

please let me know if this makes your eclipse run faster

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文