在eclipse环境中运行我的Gwt应用程序时特别是在刷新页面时,我经常遇到“Out of Memory Perm Size”问题,或者页面花了很长时间才加载&终于消亡了。
其他问题的一些说明并不十分清楚。每个人都会产生不同的解决方案来设置记忆,这让我很困惑。
以下是eclipse.ini
中的C:\eclipse-jee-juno-SR1-win32-x86_64\eclipse
文件:
-clean -startup plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813 -product org.eclipse.epp.package.jee.product --launcher.defaultAction openFile --launcher.XXMaxPermSize 256M -showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m --launcher.defaultAction openFile -vmargs -Dosgi.requiredJavaVersion=1.5 -Dhelp.lucene.tokenizer=standard -Xms40m -Xmx512m
另外,在我的日食中,运行 - >调试配置 - >参数选项卡 - >我看到了
VM arguments: -Xmx2048m // this is quite high number why it still very slow??
我需要最简单的方法来解决它。那么解决这个问题最简单的方法是什么?
答案 0 :(得分:1)
启动Visual VM,查看每一代内存的作用。
我会专注于烫发。您可以像这样增加其设置:
-Xms256m -Xmx512m -XX:MaxPermSize=256m
您最好在64位操作系统上运行。 32位JVM不允许最大堆大于1.2-1.5MB。