如何查看 JVM 中的 MaxPermSize?

发布于 2024-10-20 08:00:50 字数 377 浏览 2 评论 0原文

我遇到了可怕的PermGen:内存不足< /a> 在 TomCat 上部署 Web 应用程序时出错。我尝试了许多可能的解决方案,但它们不起作用(有时有效,通常无效)。我想知道我在“BuildConfig.groovy”中的配置是否生效:

grails.tomcat.jvmArgs = ["-Xmx1024m", "-XX:MaxPermSize=1024m"]

有谁知道如何查看JVM实际应用的MaxPermSize?

I'm meeting the dreadful PermGen:Out of memory error when deploying a web-app on TomCat. I have tried many possible solutions, but they don't work out(sometimes it works, usually it doesn't). I wonder if my config in "BuildConfig.groovy" take effect:

grails.tomcat.jvmArgs = ["-Xmx1024m", "-XX:MaxPermSize=1024m"]

Does anyone know someway to view the MaxPermSize actually applied by the JVM?

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

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

发布评论

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

评论(3

墟烟 2024-10-27 08:00:50

在直接回答你的问题时,java.lang.management.ManagementFactory有方法获取java使用的所有内存池的信息,包括PermGen空间和其他非堆内存池:

List<MemoryPoolMXBean> memoryPoolMXBeans = java.lang.management.ManagementFactory.getMemoryPoolMXBeans();

for (MemoryPoolMXBean bean : memoryPoolMXBeans) {
    //Iterate over pools here
}

In direct answer to your question, java.lang.management.ManagementFactory has method to get information on all of the memory pools used by java, including the PermGen space and other non-heap memory pools:

List<MemoryPoolMXBean> memoryPoolMXBeans = java.lang.management.ManagementFactory.getMemoryPoolMXBeans();

for (MemoryPoolMXBean bean : memoryPoolMXBeans) {
    //Iterate over pools here
}
时光匆匆的小流年 2024-10-27 08:00:50

您可以在 JDK/bin 中使用 JVisualVM目录来监视有关 java 进程的所有内容。

You can use JVisualVM in the JDK/bin directory to monitor everything about a java process.

三生一梦 2024-10-27 08:00:50

我相信 jsdk 中有几个实用程序 - 尝试 jstat -gcpermcapacity。另一个有时有用的技巧是 ps -fwwwC java (假设您在 Linux 机器上运行它)

There's a couple of utilities that come in the jsdk i believe - try jstat -gcpermcapacity. Another trick that can sometimes be helpful is ps -fwwwC java (assuming you are running this on a linux box)

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