Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Possible to have several instances of Eclipse open simultaneously?

Tags:

java

eclipse

I'd like to know if it's possible to have several instances of Eclipse open at the same time. I'm using it for Java development. I know I can have several files from different projects open at the same time (at least that's what it seems to me), but whenever I try to open a second instance it shows me the following message:

alt text http://img46.imageshack.us/img46/5033/sxbz3mti34afybrafhc32m0.png

Is there any easy way to have several instances of Eclipse open, each one with a different project?

Thanks

like image 397
devoured elysium Avatar asked Feb 28 '10 17:02

devoured elysium


People also ask

Can I have multiple workspaces in Eclipse?

Setting Up Your Workspace Eclipse designates a root folder in which to house sub-folders for projects and their resources. You can set up multiple workspaces if you want, but at any one time you will only have one open in Eclipse at a time.

How do I open multiple instances of Eclipse Mac?

Go to eclipse Market place. Search for "macOS Eclipse Launcher" and install. It will restart . Now under file menu check for open option > there you will find other projects to open also at same time .

How do I install another version of Eclipse?

To do so, download a new build from the Eclipse download website (https://www.eclipse.org/downloads/eclipse-packages/) and run the installer or unzip the archive in a new directory. We strongly recommend against installing/unzipping over your existing version of Eclipse IDE as it may corrupt your installation.


3 Answers

Either create multiple workspaces (Preferences / Startup, tickbox to ask which on every startup)

Or more likely, I think Window / New Window will open a second eclipse viewing window on the same workspace.

like image 88
DaveC Avatar answered Oct 12 '22 23:10

DaveC


yes, each on a different wokspace.

Projects and Workspaces in Eclipse are different. A workspace has a set of global settings and then it has a set of projects.

There are two kinds of project. Projects in the workspace and projects outside the workspace. If you use in the workspace projects (for example, by telling eclipse to make a project via a source control checkout), then it can only be in that workspace.

If you create projects outside the workspace, then you can import each one into as many workspaces as you like.

You can make as many workspaces as you like. Each workspace can be open in only one instance of eclipse.

like image 30
bmargulies Avatar answered Oct 12 '22 23:10

bmargulies


A better answer to have only the resources from certain project in the new Window is by right clicking the project and select "Open in New Window"

like image 30
nanda Avatar answered Oct 13 '22 00:10

nanda