Reputation: 419
Like the title saying , how can I create 2 projects in the same workspace in IntelliJ IDEA?
Upvotes: 4
Views: 576
Reputation: 402543
Please read the FAQ for Eclipse users.
In IntelliJ IDEA workspace corresponds to a project. You can add multiple modules to a project, but you can't have multiple IDEA projects open at the same time in the same window.
No workspace
The first thing you'll notice when launching IntelliJ IDEA is that it has no workspace concept. This means that you can work with only one project at a time. While in Eclipse you normally have a set of projects that may depend on each other, in IntelliJ IDEA you have a single project that consists of a set of modules.
If you have several unrelated projects, you can open them in separate windows.
If you still want to have several unrelated projects opened in one window, as a workaround you can configure them all in IntelliJ IDEA as modules.
Upvotes: 4