启动项,只保留一个即可:window--preferences--General--Startup and shutdown--保留Eclipse class Decompiler。
前台插件全部不用:window--preferences--Plug-in Development--Target Platform--Runing Platform--edit--content--全不选。
取消系统自动折叠:Window->Preferences-> Java->Editor->Folding: Enable folding
打开eclipse目下下的eclipse.ini文件,最后添加:
-Xms512m
-Xmx512m -XX:PermSize=96m-XX:MaxPermSize=96m-XX:+DisableExplicitGC-XX:CMSInitiatingOccupancyFraction=85-Xverify:none
前四个参数jvm内存相关,后面紧跟两个是GC相关,最后一个字节码相关。
这样,eclipse启动速度快了将近一倍,而且打开后没有延迟的迹象,直接进行编码!