Java内存使用/修复
我们正在使用一个基于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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您无法升级 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.
我首先尝试理解 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.
由于您使用的是 1.4.2,并且无法使用 jmap 或 VisualVM,因此我建议使用以下命令运行 Java 进程:
在内存耗尽后,使用 HPjmeter。这应该可以帮助您识别应用程序中膨胀的对象。
Since you're using 1.4.2, and you can't use jmap or visualvm, I'd suggest running your Java process with:
and after it runs out of memory, open foo.out with HPjmeter. This should help you identify the objects ballooning in your application.