Book Image

IntelliJ IDEA Essentials

By : Jaroslaw Krochmalski
Book Image

IntelliJ IDEA Essentials

By: Jaroslaw Krochmalski

Overview of this book

Table of Contents (17 chapters)
IntelliJ IDEA Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

What is a project?


Almost everything you do in the IDE is contained within the scope of a project. The project represents the software you are working on—it is the top-level container for all your modules, libraries, and configuration settings. There can be only one project open in a single IDE window. If you would like to have multiple projects open, IntelliJ IDEA will open them in separate, isolated windows. You can switch between the windows using the Next Project Window or Previous Project Window options from the Window menu or using the keyboard shortcut, Ctrl + Alt + open/close bracket.

IntelliJ IDEA stores the project's configuration in two different formats. The project's format is covered later in the Project format section.

Project structure and configuration

Before we create a new project from scratch or import an existing one, we will focus on IntelliJ IDEA's key concepts that will define the project. We will start by listing the terminology differences between different IDEs and...