IntelliJ IDEA Migrating From EclipseEclipse is a popular IDE for Java Developer. If the current Eclipse user wants to switch from eclipse IDE to IntelliJ IDE then it requires the understanding of some basic differences between these two IDEs. These basic differences includes User Interface, Terminologies, Project Configuration, Popular Shortcuts and some other aspects. User Interface1. No Workspace - In IntelliJ IDEA, we can work with only one project at a time but in Eclipse, we can work with a set of projects at the same time. 2. No Perspective - It means, we cannot switch between different workspace layouts manually to perform different tasks. 3. Multiple Windows - In IntelliJ IDEA, we cannot open multiple windows with single project but we can open any number of editor tabs into separate windows. Eclipse Vs IntelliJ TerminologyThe following table compares Eclipse and IntelliJ IDEA terminologies -
ShortcutsIntelliJ IDEA shortcuts are different from Eclipse shortcuts. Some popular shortcuts are given in the below table.
Eclipse KeymapIntelliJ IDEA Provides an Eclipse keymap that closely related to its shortcuts. To open Eclipse keymap, do the following things: 1. Go to File -> Setting -> Keymap option 2. Select Eclipse from Keymap dropdown. ![]() Code FormatingIntelliJ IDEA Code Formating rules are approximatly similar to the Eclipse IDE with some minor differences. To import Eclipse Code Formatter setting do the following: 1. Go to File->Setting->Editor->Code Style->Java 2. Select Import Scheme->Eclipse XML Profile ![]() DebuggingIntelliJ IDEA and Eclipse debugger are similar but they use different shortcuts. Some of the debugger shortcuts are given below in the table:
Importing an Eclipse project to IntelliJ IDEAFollow the steps given below to import Eclipse Project in IntelliJ IDEA: 1. Go to File->New->Project from Existing Source 2. Select Eclipse Project Directory 3. Import Project Wizard open. Select Create Project from Existing Sources. ![]() 4. Follow on-screen instruction to continue. 5. Finish
Next TopicIntelliJ IDEA Migrating From NetBeans
|