Workspaces
Create different workspaces for different projects
File ➔ Switch Workspace ➔ Other ➔ Click Browse in the dialog box and create a new folder and select
Remove the unused workspaces by
Window ➔ Preferences ➔ General ➔ Startup and Shutdown ➔ Workspaces
Eclipse Configuration details
Help ➔ Above Eclipse IDE ➔ Installation details ➔ Configuration tab
Look for -vm line
Building package using Maven
Package Explorer ➔ Right click on package ➔ Run as ➔ Maven Build…
In the Goal input type in clean package
Click RUN
Command to run java program from eclipse
Debug Perspective = Windows ➔ Show view ➔ Debug
Right click on the executing program in debug view and select properties.
Raw command would look like this
To see the console messages(System.out.println), you need to update from javaw.exe to java.exe,
- javaw.exe - doesn’t show the console.log outputs
- java.exe - shows the console.log outputs
Thank you for reading