Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse workspaces and projects vs IntelliJ projects and modules?

Switching to using IntelliJ for all my coding but am confused by the use of 'projects' and modules in IntelliJ.

Can someone tell me if Eclipse 'projects' is the same as IntelliJ's use of 'project'.

Or is an Eclipse 'workspace' more like an IntelliJ 'project'?

like image 638
Bachalo Avatar asked Dec 03 '10 19:12

Bachalo


People also ask

Does IntelliJ have workspace like Eclipse?

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.

Which is better Eclipse or IntelliJ?

A: Eclipse is better than IntelliJ for large and complex projects. This is because it indexes the entire project during startup. IntelliJ IDEA, however, outshines Eclipse when it comes to dealing with existing projects. In this case, IntelliJ IDEA delivers better performance than Eclipse.

What is the difference between project and module in IntelliJ?

In IntelliJ IDEA, a module is an essential part of any project – it's created automatically together with a project. Projects can contain multiple modules – you can add new modules, group them, and unload the modules you don't need at the moment.

What is the difference between workspace and project in Eclipse?

The workspace is used to organize a set of projects. A project is a collection of related resources.


1 Answers

The JetBrains website has this covered.

Migrating From Eclipse to IntelliJ IDEA

The quick answer is an Eclipse Project is equivalent to an IDEA Module. The concept of Project in IDEA is like a Workspace in Eclipse.

Edit:

Also take a look at the eclipse integration page.

like image 177
Bradley Dwyer Avatar answered Oct 21 '22 20:10

Bradley Dwyer