This first section has the must know items to survive in Eclipse.
Eclipse Version: Helios Service Release 2
Help Me NOW!
Editor
Advanced Items - learn later
ALT-Shift-L - create a variable with highlighted code.
Step 1: Enter the following code.
int myIndex = "Michael|Thomas|123 Love Ln|Atlanta|GA|55555".indexOf("|GA|");
Step 2: Highlight the long string.
Step 3: ALT-Shift-L
Step 4: Type your variable name. Ex: myString
resulting code:
String myString = "Michael|Thomas|123 Love
Ln|Atlanta|GA|55555".indexOf("|GA|");
int myIndex = myString.indexOf("|GA|");
Open Items - I need to research
Block Select
Upper/Lower case
Debugger
Preferences - (Window->Preferences)
File Search
Create a Project
Creating Files & Folders (JAVA EE perspective)
Copy a Project
Eclipse Workspaces
Create a Custom Perspective: JAVA EE (<initials>)
Changing Colors and Font
Show View - click Window, Show View
Context Root
Errors
| Topic | Info |
| Using Tomcat within Eclipse | http://www.coreservlets.com/Apache-Tomcat-Tutorial/eclipse.html |
| Add a User Library |
Add a User Library Create user libraries that you can reference in your projects. The jar files can stay in one location but when you publish or export they will be packaged into your WAR file in the "WEB-INF\lib" directory. Window, Preferences, Java, Build Path, User Libraries |
| Tasks View |
|
| Perspectives | Perspective ICON is in the upper right
corner. Open a perspective - Window, Open Perspective. Save a perspective - Window, Save Perspective (ex: Java <your initials) Restore to prior saved perspective - Window, reset perspective (misleading) Ctrl-F8 - switch between perspectives. |