Eclipse Plugins
http://download.macromedia.com/pub/labs/jseclipse/autoinstall/
SVN Client
Maven
CheckStyle
PMD
Properties Editor
TestNG
Jetty
http://jettylauncher.sf.net/updates
FreeMarker
http://www.freemarker.org/eclipse/update
i18n
http://www.guh-software.de/eclipse/
SpringIDE
http://springide.org/updatesite/
JUnitFactory
http://www.junitfactory.com/update/
JDoc
http://dist.codehaus.org/groovy/distributions/update/
JSUnit
以下两个plugin太大 可以将plugin下载下来在本地安装
eclipsexul http://sourceforge.net/projects/eclipsexul
Aptana http://www.aptana.com/studio/download
FreeMarker
http://www.freemarker.org/eclipse/update
i18n
http://www.guh-software.de/eclipse/
SpringIDE
http://springide.org/updatesite/
JUnitFactory
http://www.junitfactory.com/update/
JDoc
- For Eclipse 3.2.x: http://jdocs.com/eclipse/plugin32
- For Eclipse 3.3: http://jdocs.com/eclipse/plugin33
http://dist.codehaus.org/groovy/distributions/update/
JSUnit
以下两个plugin太大 可以将plugin下载下来在本地安装
eclipsexul http://sourceforge.net/projects/eclipsexul
Aptana http://www.aptana.com/studio/download
Eclispe快捷方式
- Ctrl + Shift + O : Organize imports
- Ctrl + Shift + T : Open Type
- Ctrl + Shift + F4 : Close all Opened Editors
- Ctrl + O : Open declarations
- Ctrl + E : Open Editor
- Ctrl + / : Line Comment
- Alt + Shift + R : Rename
- Alt + Shift + L : extract to Local Variable
- Alt + Shift + M : extract to Method
- Alt + Shift + V : Move
- F3 : Open Declaration
- CTRL-3: Quick Access (to basically everything; I remap this to CTRL-` because it’s eassier to type one-handed)
- CTRL-H: Search & Replace
- ALT-SHIFT-X: Run As…
ALT-SHIFT-D: Debug As… - ALT-SHIFT-Q: Open View…
- CTRL-TAB / SHIFT-CTRL-TAB: cycle open editors (actually, these are usually on *-F6 but I remap them)
- Alt + Shift + W : show the class in the package view.
- Alt+Left or Alt+Right for navigation
- Ctrl+Q for last edit
- Ctrl+1
- Ctrl+F6 — Switch between last used files
- Ctrl+Alt+H — Open Call Hierarchy
- Alt+Shift+T — Show Refactor Quick Menu
Convert an Eclipse “General” Project to a Java Project
I don’t know how many times I’ve accidentally created a General project instead of a Java project, and it always bugged me that you couldn’t convert from General to Java without starting over.The quick and easy hack is explained well here. Open the relevant .project file and add the following (note that you don’t need the <natures> element if one is already there):
<natures>It’s too bad you can’t “Add Java Project Nature” from within the Eclipse UI.Make sure you do this with the project closed!
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
没有评论:
发表评论