0

在为 Eclipse 安装谷歌应用引擎时,我得到了perm gen error. 我读到您需要perm gen从 eclipse 打包的配置或 ini 文件中增加 eclipse 的大小。目前它看起来像这样:

-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 吗?我应该将尺寸增加到多大?

4

1 回答 1

0

您需要在ini文件末尾添加一个:

-XX:MaxPermSize=256m

继续扩大规模,直到问题消失 - 先尝试 128M,看看情况如何。

是的,256M 的意思是“256 兆字节”。您也可以使用G千兆字节。

于 2012-05-29T05:01:41.137 回答