Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable intellij springboot dashboard

Intellij now comes with a springboot dashboard. I have been brave enough to enable it, but now I want to disable it because it confuses me.

Where do I find the settings? In settings I see nothing

like image 687
EhmKah a.k.a. Michael Krauße Avatar asked Sep 04 '17 09:09

EhmKah a.k.a. Michael Krauße


People also ask

Is IntelliJ good for Spring Boot?

IntelliJ is really a powerful editor and provides first-class support to create and run Spring Boot based web applications.

How do I run Spring Boot in IntelliJ in debug mode?

5.1. IntelliJ offers first-class support for Spring and Spring Boot applications. Debugging is as simple as navigating to the class with the main method, right-clicking the triangle icon, and choosing Debug. Finally, IntelliJ makes it very easy to connect to any running process and debug it.


3 Answers

Intellij 2017.3

You can disable by removing the Spring Boot dashboard:

  • Go to Run/Debug Configurations
  • In the Defaults configuration, select the Spring Boot dashboard and click on the - button

intellij2017.3

like image 113
l-lin Avatar answered Oct 08 '22 00:10

l-lin


Intellij 2018.3

The Defaults apparently got replaced by templates. And you can only move configuration types in and out of the Run Dashboard.

To do so for, say all Application Run/Debug Configurations, you have to

  • Edit Configurations...
  • > select Templates category on the left
  • > Configurations available in Run Dashboard
  • > select the category you want to remove
  • > hit the - button

enter image description here

EDIT: Found it on Jetbrain's documentation: https://www.jetbrains.com/help/idea/creating-and-editing-run-debug-configurations.html#run-dashboard

like image 24
Husterknupp Avatar answered Oct 07 '22 23:10

Husterknupp


Intellij 2017.2

You can disable/deselect the Show in Run Dashboard configuration option in the Run/Debug Configurations dialog, accessed via Run > Edit Configurations.

To do the same thing in Intellij 2017.3, have a look at this answer.

To do the same thing in Intellij 2018.3, have a look at this answer

like image 27
glytching Avatar answered Oct 07 '22 23:10

glytching