intellij-idea Getting started with intellij-idea

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

is an IDE made as the spiritual successor for the widely-adopted Eclipse IDE used for Java development. Eclipse, although extremely powerful, is often criticized for being extremely clunky and difficult to use.

Intellij IDEA attempts to build an IDE with similar power to Eclipse, but with a finishing polish on top. Developers would be at an advantage using IDEA because of the many tools and hooks it has to save time on all projects. Smart code completion, native unit test integration and native Gradle management are just a few of the highlights of Jetbrain's Java IDE

Installation or Setup

There are two main versions of IntelliJ IDEA: the Community edition and the Ultimate edition. The Community edition is free and is not lacking for features in terms of Java SE development.

Windows & Linux

Download IntelliJ IDEA from the JetBrains website, and follow installation procedures. If the Java Development Kit (JDK) is not installed, download and install the JDK. Note that you need the JDK, only having the Java Runtime Enviroment (JRE) is not enough.

Once IntelliJ IDEA has been downloaded:

  1. Run the installer
  2. Press next
  3. Choose a folder to install IntelliJ IDEA to (In most cases, leave this as the default)
  4. Choose a start menu folder to crete IntelliJ IDEA shortcuts (In most cases, leave this as the default)
  5. Choose whether to create a desktop shortcut, and choose whether to associate various Java files with IntelliJ IDEA
  6. Press next, and wait for it to install

OS X / macOS

Download IntelliJ IDEA from the JetBrains website, open the disk image (*.dmg) file downloaded, and drag and drop the application to the alias to your /Applications folder.

Mac Installer

Arch Linux

IntelliJ IDEA can be installed on Arch Linux using its package manager, pacman . Open a terminal and enter the following command.

sudo pacman -S intellij-idea-community-edition
 

Using sudo is not required if you're running as the root user.

Arch Linux Installation

Ubuntu

(1) Install ubuntu-make package.

For ubuntu 16.04 and later,

sudo apt install ubuntu-make
 

For previous versions of ubuntu,

sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make  
sudo apt-get update
sudo apt-get install ubuntu-make
 

(2) After installing Ubuntu Make, do a

umake ide idea
 

Default installation path: /home/current-user/.local/share/umake/ide/idea

Follow hello_world project listed above.

Follow ubuntu-make page to change default installation and to install other IDEs.

Other

Further installation details can be found here: https://www.jetbrains.com/help/idea/2016.1/installing-and-launching.html

Hello, World!

This will teach you how to make your first project using IDEA.

Launch IDEA, and click Create New Project from the startup screen: Startup screen Click Next on the next screen. We're creating a simple Java project, so we don't need any addons or extras to this project No Action Needed! Just click Next! Use the next screen to create the Java Hello World template project: Create from template Finally, name your project and select a location on disk, and click Finish : Name your project You should end up with a window that looks something like this: Main window At this point, the project is all ready to go, simply click the Run button or go to Run -> Run 'Main' Run your project And you're done! The console will automatically pop up, giving it's salutations to the globe! Hello World!

Migrating from Eclipse

Intellij IDEA attempts to appeal to the wide Java fanbase which uses Eclipse for their development by allowing developers to migrate their Eclipse projects over to an IDEA structure with a few simple clicks!

First, start IDEA and click Import Project from the startup window: Click "Import Project" Then, select your Eclipse project using the explorer window Select your Eclipse project

Intellij will prompt you for the model you are importing from, make sure Eclipse is selected before clicking Next Just click "Next"

The next screen will show a confirmation of the path you want to import, simply click Next : Click "Next"

Next, select the modules you want created. In the particular example project, only the Alice and the BuggyRos projects mattered when working in Eclipse Select modules you want created

Finally, make sure the correct version of the JDK is selected before Finish ing Select the correct JDK

And the Eclipse project has been fully migrated to Intellij! The project will still open in both IDEs, and will be fully functional in both



Got any intellij-idea Question?