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

Running


To run the specific run/debug configuration, pick it from the Run drop-down menu and choose Run from the toolbar or hit the Shift + F10 (PC) or control + R (Mac) keyboard shortcut.

You can also use Alt + Shift + F10 (PC) or control + Option + R (Mac) to see a handy pop up with all the defined configurations for you to pick and then run. Additionally, the first item on the pop up is Edit Configurations…, which is a nice shortcut to open the Run/Debug configuration dialog box.

The results of the launch will be presented in the Run tool window, which is placed at the bottom of the workspace by default, as shown in the following screenshot:

The largest part of the Run tool window is occupied by the Console view (in case of a standalone Java application) or the Output view (in case of a web application). The standard output will presented here. The buttons on the left side of the Console or Output view allow clearing the view, toggling the line wrapping, or printing the content. If you had...