eclipse优化 提高运行速度

Eclipse、MyEclipse优化,提高运行速度

1.加大JVM的非堆内存:
eclipse\eclipse.ini 文件
把下面的那个 -XX:MaxPermSize 调大,比如 -XX:MaxPermSize=512M,
再把 -XX:PermSize 调成跟 -XX:MaxPermSize一样大
注意:XX:MaxPermSize 和 Xmx 的大小之和不能超过你的电脑内存大小!

2.去除不需要加载的模块:
windows–>perferences–>general–>startup and shutdown
Automatic Updates Scheduler:去掉;
MyEclipse Derby:一种保存成 jar 形式的数据库,去掉;
MyEclipse EASIE 打头的启动项:myeclipse 支持的服务器,只选自己用的,其他去掉;
WTP Webservice UI Plug-in:一个跟myeclipse差不多的东西,主要差别是 WTP 是免费的,如果使用myeclipse,这个可以取消;

3.取消MyEclipse在启动时自动验证项目配置文件:
windows–>perferences–>myeclipse–>validation
manual下面不动,build下面只留 classpath dependency Validator ;
手工验证方法: 在要验证的文件上,单击鼠标右键–>myeclipse–>run validation

4.取消拼写检查:
windows–>perferences–>general–>editors->Text Editors->spelling
右侧上面的 Enable spell checking 去掉

5.关闭myeclipse的Quick Update自动更新功能:
Eclipse:
Install/Update > Automatic Updates > 取消勾选“Automatically find new updates and notify me”。

Windows > Preferences > MyEclipse Enterprise Workbench > Community Essentials,
把选项 "Search for new features on startup"的前勾去掉即可。

6.修改JSP文件默认打开方式:
JSP 的默认编辑器不好,会同时打开预览
windows–>perferences–>general–>editors->file associations
把默认改成 MyEclipse JSP Editor

你可能感兴趣的:(开发工具)