Eclipse优化
Posted 牵着妞去散步
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse优化相关的知识,希望对你有一定的参考价值。
1.在eclipse启动的时候,它总是会搜索让其运行的jre,往往就是这个搜索过程让eclipse启动变慢了。(没设置时,等2-3s出现进度条,设置后直接出现进度条)
只要在eclipse.ini中加入-vm的参数就可以了
2.设置字体大小
Window-Preferences->General->Appearance->Colors and Fonts->Basic->Text Font
3.windows–>perferences–>general–>Content Types,将需要修改的类型修改成UTF-8
4.JSP、XML等文件类型默认打开方式的修改
windows–>perferences–>General–>Editors->file associations选择*.xml,选择myeclipse xml editor点default,*.jsp则选jsp editor点default等
5.tab代码缩进4个空格
Window->Preferences->General->Editors->Text Editors:Displayed tab width = 4,选重insert spaces for tabs
6.关闭拼写检查设置
7.取消所有启动时要激活的插件(在用时激活也一样)和其它的相关的在启动时执行的操作。
8.编码格式修改
windows–>perferences–>general–>Workspace,将工作空间中的文本文件的编码格式改为UTF-8
9.关闭自动更新
10.关闭SaveAction。在每次保存时都会执行的操作,这个会严重的拖慢保存,特别是文件大时。这个其实只要自己养成良好的编程习惯,就完全不需要这个了。
11.优化代码提示。
12.注解配置
设置注释模板的入口: Window->Preference->Java->Code Style->Code Template
文件(Files)注释标签
/**@Description:
* @Title: ${file_name}
* @Package: ${package_name}
* @Author: ${user}
* @Date: ${date} ${time}
*/
类型(Types)注释标签(类的注释):
/**@Description:
* @ClassName: ${type_name}
* @Author: ${user}
* @Date: ${date} ${time}
* ${tags}
*/
字段(Fields)注释标签:
/**
* @Fields ${field} : ${todo}
*/
构造器(Constructor & Methods)标签:
/**@Description:
* @Title: ${file_name}
* @Date: ${date} ${time}
* @Author: ${user}
* @Throws
* ${tags}
*/
方法(Methods)标签:
/**@Description:
* @Title: ${enclosing_method}
* @Date: ${date} ${time}
* @Author: ${user}
* @Throws
* ${tags}
*/
覆盖方法(Overriding Methods)标签
/* Description:
* Title: ${enclosing_method}
* ${tags}
* ${see_to_overridden}
*/
代表方法(Delegate Methods)标签:
/**
* ${tags}
* ${see_to_target}
*/
13.Eclipse自动文本验证
Window->Preferences->Validation
保留manual(手动)部分,build下只留"classpath dependencyValidator"
手动验证:选中文件右击->Validation
修改黑色主题后,需要修改Debug执行当前行的颜色
window --preferences--general--editors--text editors--annotations--debug current instruction pointer
以上是关于Eclipse优化的主要内容,如果未能解决你的问题,请参考以下文章