码迷,mamicode.com
首页 > 系统相关 > 详细

Eclipse优化

时间:2018-04-09 21:18:05      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:jsp   content   关闭   工作空间   files   efault   手动   方式   rip   

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)注释标签
/**
 * @Title: ${file_name}
 * @Package ${package_name}
 * @Description: ${todo}
 * @author ${user}
 * @date ${date} ${time}  
 */

类型(Types)注释标签(类的注释):
/**
 * @ClassName: ${type_name}
 * @Description: ${todo}
 * @author ${user}
 * @Date ${date} ${time}  
 *
 * ${tags}
 */

字段(Fields)注释标签:
/**
 * @Fields ${field} : ${todo}
 */

方法(Constructor & Methods)标签:
/**
 * @Title: ${enclosing_method}
 * @Description: ${todo}
 * @Date ${date} ${time}
 * @author ${user}
 * @throws
 * @param ${tags}
 * @return ${return_type}
 */

覆盖方法(Overriding Methods)标签
/* (非 Javadoc)
 * <p>Title: ${enclosing_method}</p>
 * <p>Description: </p>
 * ${tags}
 * ${see_to_overridden}
 */
 
代表方法(Delegate Methods)标签:
/**
 * ${tags}
 * ${see_to_target}
 */

13.Eclipse自动文本验证
Window->Preferences->Validation
保留manual(手动)部分,build下只留"classpath dependencyValidator"
技术分享图片
手动验证:选中文件右击->Validation

 

Eclipse优化

标签:jsp   content   关闭   工作空间   files   efault   手动   方式   rip   

原文地址:https://www.cnblogs.com/OnlyCT/p/8761891.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!