在为eclipse安装Google应用引擎时,我得到了perm gen error
。我读到你需要从配有eclipse的配置或ini文件中增加eclipse perm gen
的大小。目前它看起来像这样:
-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502
-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
-Xms40m
-Xmx512m
我需要在多少个地方进行编辑?我需要在哪里添加? 256 M
是否意味着MB?我应该增加尺寸大小?
答案 0 :(得分:0)
您需要在ini文件的末尾添加一个:
-XX:MaxPermSize=256m
继续使这个更大,直到问题消失为止 - 首先尝试128M然后看看它是怎么回事。
是的,256M表示“256兆字节”。您也可以使用G
作为千兆字节。