如何确定 Java 应用程序中 PermGen 的大小(即以编程方式)?
有什么方法可以测量 Java 应用程序中当前使用永久代 (PermGen) 的大小吗?我无法使用 VisualVM 等外部分析工具。
更好的是估计 PermGen 中 Java 类的内存消耗。它与字节码文件的大小几乎成正比吗?
Is there any way to measure the currently used size of permanent generation (PermGen) within my Java application? I cannot use external profiling tools such as VisualVM.
Even better would be an estimation of the memory consumption of a Java class in the PermGen. Is it nearly proportional to the size of the bytecode file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 JDK 附带的 MemoryMXBean。但我认为没有办法从正在运行的应用程序中查询 permgen 使用情况。
有关 MemoryMXBean 的文档。
You could use MemoryMXBean that comes with JDK. But I don't think there is a way to query on the permgen usage from within a running application.
Docs about MemoryMXBean.
您可以将 JDK 中的 jvisualvm 工具与 Visual GC 插件,用于监视所有 JVM 堆区域,包括 PermGen。
You can use jvisualvm tool from JDK with Visual GC plugin to monitor all JVM heap areas including PermGen.
如果您不在 Windows 上,您可以尝试 jmap< /a> 随 JDK 一起提供。
If you're not on Windows, you could try jmap which is shipped with the JDK.
您可以使用
jmap
命令:其中选项是以下之一:
You can use the
jmap
command:where options is one of:
PermGen 的大小与类文件的大小无关。根据 Sun 的规定,PermGen 的默认大小是 64 MB。如果您希望增加它,您可以使用以下命令显式设置它:
在 Java 命令行或启动脚本中。这也是您无需依赖外部工具即可了解其设置的方式。
编辑:
阅读本文以确定当前以编程方式使用的 PermGen 大约数量(即没有外部工具):
http://frankkieviet.blogspot.com/2006/10/how-to-fix-dreaded-permgen-space.html
The size of PermGen has nothing to do with the size of your class files. The default size of PermGen according to Sun is 64 MB. If you wish to increase it you can set it explicitly using:
in your Java command line or startup script. This is also how you can know what it's set to without relying on an external tool.
EDIT:
Read this article to determine approximately how much PermGen is currently being used programmatically (i.e. no external tools):
http://frankkieviet.blogspot.com/2006/10/how-to-fix-dreaded-permgen-space.html