0

Recently all my runs of my java code eclipse have been giving me permMem errors. I can fix this with adding

-XX:PermSize=128M -XX:MaxPermSize=256M

to the dun/debug config, but I don't want to keep doing this. My eclipse config has:

eclipse.vm=C:\Windows\system32\javaw.exe eclipse.vmargs=-Xms384m -Xmx768m -XX:MaxPermSize=384m

4

1 回答 1

0

您可以通过将选项添加到启动参数来使新的运行/调试启动共享您的 VM 选项。它在这里解释。

编辑:
我的第一个答案是关于插件开发,对此感到抱歉。您可以通过以下方式添加共享 vm 选项:
Window->Preferences->Java->Installed JREs->Select Your JRE->Edit->Add your vm arguments to Default VM Arguments

这会将您的 VM 参数添加到您的 Java 应用程序运行/调试配置中。

于 2013-07-09T14:29:10.130 回答