Java内存使用/修复

发布于 2024-10-07 06:13:52 字数 128 浏览 3 评论 0原文

我们正在使用一个基于RMI的java应用程序。当我们运行该应用程序时,即使应用程序处于理想阶段,内存使用量仍然不断增加。我们主要使用Vector和hash map数据结构。如何最小化java内存使用量/修复内存泄漏?

提前致谢

We are using a java application which is based on RMI.When we run the application the memory usage keep on increasing even though the the application is ideal stage.We are mainly using Vector and hash map data structure.how to minimize the java memory usage/repair memory leakage?

Thanks in advance

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

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

发布评论

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

评论(3

心安伴我暖 2024-10-14 06:13:52

如果您无法升级 JDK 版本,我建议您在另一台机器(真实或虚拟)上使用最新的 1.6 JDK 测试您的应用程序,然后使用内置的 jvisualvm 这是诊断此类问题的一个非常好的工具。

If you can't upgrade your JDK version, I suggest testing your application on another machine (real or virtual) with the latest 1.6 JDK, and then use the built in jvisualvm which is a really great tool for diagnosing problems like this.

遗忘曾经 2024-10-14 06:13:52

我首先尝试理解 Java 的内存模型。

这是一个 stackoverflow 问题 (858250),其中有很多解释链接。

I'd start with trying to understand Java's memory model.

Here's a stackoverflow question (858250) with lots of links explaining.

鸵鸟症 2024-10-14 06:13:52

由于您使用的是 1.4.2,并且无法使用 jmap 或 VisualVM,因此我建议使用以下命令运行 Java 进程:

-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath="foo.out"

在内存耗尽后,使用 HPjmeter。这应该可以帮助您识别应用程序中膨胀的对象。

Since you're using 1.4.2, and you can't use jmap or visualvm, I'd suggest running your Java process with:

-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath="foo.out"

and after it runs out of memory, open foo.out with HPjmeter. This should help you identify the objects ballooning in your application.

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