加快eclipse运行速度

一、配置preferences

  • General > Startup and Shutdown : 移除所有在启动时加载的插件。
  • General > Editors > Text Editors > Spelling : 关闭拼写检查。
  • General > Validation > 勾选“Suspend all validator”。
  • Window > Customize Perspective > 移除所有用不到或不想用的内容(尽量使用快捷键),菜单栏也是如此(你用过几次菜单栏的打印按钮?)。
  • Install/Update > Automatic Updates > 取消勾选“Automatically find new updates and notify me”。
  • General > Appearance > 取消勾选“Enable Animations”。
  • 使用默认的主题。其他主题可能会降低运行速度。
  • Java > Editor > Content Assist > 禁用“Enable Auto Activation”。在Advanced中移除所有不需要的内容(替代方案是使用Ctrl+Space在需要的使用手动提示)。

二、修改eclipse.ini

文件位于安装目录的根目录。

配置jvm的内存,参考如下

-XX:PermSize=356m
-XX:MaxPermSize=356m
-Xms1224m
-Xmx1224m
-Xverify:none

 

参考:http://www.open-open.com/lib/view/open1417487706847.html

Author: bkdwei