2
-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
-showlocation
-showsplash
org.eclipse.platform
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-vm
C:/Program Files/Java/jdk1.7.0_09/jre/bin/server/jvm.dll
-vmargs
-Dosgi.requiredJavaVersion=1.6
-Dhelp.lucene.tokenizer=standard
-Declipse.p2.unsignedPolicy=allow
-Xms512m
-Xmx384m
-Xss4m
-XX:PermSize=128m
-XX:MaxPermSize=384m
-XX:CompileThreshold=5
-XX:MaxGCPauseMillis=10
-XX:MaxHeapFreeRatio=70
-XX:+CMSIncrementalPacing
-XX:+UnlockExperimentalVMOptions
-XX:+UseG1GC
-XX:+UseFastAccessorMethods
-Xincgc 
-XX:-DontCompileHugeMethods 
-XX:MaxInlineSize=1024  
-XX:FreqInlineSize=1024 
-Dcom.sun.management.jmxremote
-Dorg.eclipse.equinox.p2.reconciler.dropins.directory=C:/Prog/Java/eclipse_addons
-Dsun.lang.ClassLoader.allowArraySyntax=true
-debug
org.eclipse.equinox.p2.core/debug=true
org.eclipse.equinox.p2.core/reconciler=true

这是我更改后的 eclipse.ini 文件。这是我更改之前的 eclipse.ini 文件:

    -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

有人有什么建议吗?我尝试更改: -Dosgi.requiredJavaVersion=1.6 -Xms512m 到 -Dosgi.requiredJavaVersion=1.7 -Xms1024m 没有运气

4

2 回答 2

2

一个原因是您的 -Xms 参数(初始堆大小)定义了比 -Xmx 参数(最大堆大小)更大的堆大小,您应该修复它。如果修复后问题仍然存在,请尝试恢复到原始 eclipse.ini 文件并一一应用参数以查看哪个是另一个“错误的”。

于 2013-04-05T13:39:04.990 回答
1

你似乎一口气改变了很多事情。

作为一般策略,我建议恢复到原始设置,然后一次更改一项,从最重要的一项开始……或最有可能起作用的一项。

于 2013-04-05T13:52:02.833 回答