启动项,只保留一个即可: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启动速度快了将近一倍,而且打开后没有延迟的迹象,直接进行编码!

 

 

 

 

 

相关文章:

  • 2021-05-06
  • 2021-08-14
  • 2021-07-05
  • 2021-08-05
  • 2022-02-25
  • 2021-06-20
  • 2021-07-24
猜你喜欢
  • 2021-12-26
  • 2021-10-12
  • 2021-05-11
  • 2021-11-23
  • 2021-11-07
  • 2021-04-23
  • 2021-11-04
相关资源
相似解决方案