1,快捷键___________________________________________________________
1.1、帮助命令:ctrl + shift + l (load)
1.2、自动补全(Content Assist(内容辅助))的快捷键Alt+/
位置:Window->Preferences->General->Keys
重新绑定atl+/为Content Assist即可,Content Assist不要带任何括号后缀的那项。
一般是被Word Completion所替代了
1.3、ctrl+o, ctrl+l, ctrl+shift+r, ctrl+shift+o, alt+shift+f
2,图标含义___________________________________________________________
eclipse 图标含义 http://wenku.baidu.com/view/a7790cc9da38376baf1fae1a.html
3、注释模板@author @version___________________________________________________________
3.1、新建文件时自动添加注释
eclipse->window->preference->java->code styple->code template->Code->New Java files
点击 Edit
${filecomment}
${package_declaration}
/**
* @author river.wang
* @date ${date} ${time}
*/
${typecomment}
${type_declaration}
3.2、还有一种方法,是在输入“/**”的时候自动出来的:
eclipse->window->preference->java->code styple->code template->comments->typles
点击 Edit ,就可以根据自己需要编写了
4、eclipse-svn插件,在工程树形界面后方显示版本号,但不显示svn提交人
Window-->Preferences-->Team-->SVN-->Lable decorations
点击右侧text decorations选项卡
文件格式:{added_flag}{dirty_flag}{name} {revision} {date} {author}
文件夹修饰:{external_flag}{added_flag}{dirty_flag}{name}
项目修饰:{dirty_flag}{name} [{url_short}]
5、项目前大红感叹号
windows-->preferences-->java-->build path-->classpath variable,选项卡中,new一个M2_REPO(mvn库)的目录,即可。
6、Eclipse Debug时显示source not found
在Debug 视图下
-->在调试的线程上 右键单击
-->选择Edit Source Lookup Path
-->选择Add
-->选择Java Project
选择相应的Project(如果有多个,可以直接添加所有的) 进行OK确定即可
7、eclipse设置行宽
window-->preference-->java-->code style-->formatter
new一个或edit(内建的不让保存会提示重命名new一个)
在tab的Line Wrapping设置 最大的line width 即可。