MyEclipse has detected that less than 5% of the 512MB of PS Old Gen (Heap memory)

博主开发环境:

操作系统:Windows10

内存大小:8G

Java版本:java -version "1.7.0_79"

Myeclipse版本:Myeclipse 10

之前开发项目好好的,最近接手一个新项目,SVN导入项目,然后Myeclipse就弹出内存溢出,很郁闷有没有。在网上找了好多方法都没用!!!要抓狂了!!好吧,内存溢出是吧?于是修改Myeclipse.ini

#utf8 (do not remove)
#utf8 (do not remove)
-startup
../Common/plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
../Common/plugins/org.eclipse.equinox.launcher.i18n.win32.win32.x86_64_3.2.0.v201103301700
-install
D:/MyEclipse 10/MyEclipse 10-1
-vm
D:/MyEclipse 10/Common/binary/com.sun.java.jdk.win32.x86_64_1.6.0.013/bin/javaw.exe
-vmargs
-Xms1024m
-Xmx2048m
-XX:PermSize=1024m
-XX:MaxPermSize=1024m
-XX:ReservedCodeCacheSize=64m
-Dosgi.nls.warnings=ignore

Who pa who ?

参考链接:

http://blog.csdn.net/jazywoo123/article/details/7877768

时间: 2024-10-23 14:44:32

MyEclipse has detected that less than 5% of the 512MB of PS Old Gen (Heap memory)的相关文章

MyEclipse for Spring启动时报错"An internal error occurred during: 'Updating indexes'.Java heap space"的解决办法

问题 MyEclipse for Spring在启动时,报如下错误:An internal error occurred during: 'Updating indexes'.Java heap space 解决办法 对于这种问题,可以采用禁止MyEclipse的updating indexes的方法来解决. Window -> Preferences -> Myeclipse -> Maven4Myeclipse,禁用Download repository index updates

在MyEclipse/eclipse修改jvm内存大小

修改MyEclipse/eclipse文件夹中配置文件eclipse.ini中的内存分配就哦了  ===================================  一般的ini文件设置主要包括以下几项: -vmargs -Xms40m -Xmx256m -XX:PermSize=64M -XX:MaxPermSize=128M 以下解释其意思. -vmargs:说明后面是VM的参数 -Xms40m:虚拟机占用系统的最小内存 -Xmx256m:虚拟机占用系统的最大内存 -XX:PermSi

如何修改myeclipse 内存,eclipse.ini中各个参数的作用。

修改MyEclipse/eclipse文件夹中配置文件eclipse.ini中的内存分配就哦了 =================================== 一般的ini文件设置主要包括以下几项: -vmargs -Xms40m -Xmx256m -XX:PermSize=64M -XX:MaxPermSize=128M 以下解释其意思. -vmargs:说明后面是VM的参数 -Xms40m:虚拟机占用系统的最小内存 -Xmx256m:虚拟机占用系统的最大内存 -XX:PermSize

MyEclipse内存溢出或不足的问题

做项目的时候,MyEclipse提示内存不足,我本本内存1G的呀.错误提示大概如下:MyEclipse has detected that less than 5% of the 64MB of Perm Gen (Non-heap memory) space remains. It is strongly recommendedthat you exit and restart MyEclipse with new virtual machine memoryparamters to incr

myeclipse内存不足有关问题

myeclipse内存不足有关问题 myeclipse内存不足问题 使用myeclipse8.5出现如下问题:MyEclipse has detected that less than 5% of the 31MB of Eden Space (Heap memory) space remains.It is strongly recommended that you exit and restart MyEclipse with new virtual machinememory paramt

由MyEclipse内存不足谈谈JVM内存设置

转自:http://www.javatang.com/archives/2007/12/03/1653250.html 如果没有进行设置的话,在使用MyEclipse的经常出现如下图所示内存不足的提示. 提示中说的很明白:“MyEclipse has detected that less than 5% of the 64MB of Perm Gen (Non-heap memory) space remains.”意思是说当前只有小于5%的非堆内存是空闲的.所以我们只要将这个值设置大一些就可以

解决Mac OS下安装MyEclipse报错:Your system does not have sufficient memory to support MyEclipse

最近想尝尝鲜,FQ去www.myeclipseide.com上下载了最新版的MyEclipse 15CI版,安装的时候,报告如下错误(MyEclipse 14也会出现这个问题): Your system does not have sufficient memory to support MyEclipse. MyEclipse requires 256 MBs physical memory and 64 MBs of virtual memory. Your system only has

java 虚拟机设置 Xms Xmx PermSize MaxPermSize

Eclipse崩溃,错误提示:MyEclipse has detected that less than 5% of the 64MB of Perm Gen (Non-heap memory) space remains. It is strongly recommendedthat you exit and restart MyEclipse with new virtual machine memoryparamters to increase this memory.   Failure

Tomcat Xms Xmx PermSize MaxPermSize 区别 及 java.lang.OutOfMemoryError: PermGen space 解决

解决方案 在 catalina.bat 里的 蓝色代码前加入: 红色代码 rem ----- Execute The Requested Command --------------------------------------- set JAVA_OPTS=%JAVA_OPTS%-server -Xms800m -Xmx1024m  -XX:PermSize=128m -XX:MaxPermSize=256m echo Using CATALINA_BASE: "%CATALINA_BASE