Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to activate IDEA's "Run Dashboard" feature

I have a window tool named "Run Dashboard" in Project A, but I can't activate this window in Project B. Does anyone know how to solve this? This feature appeared in IntelliJ IDEA version 2017.3.

This is what I see in Project A: long menu of run-related buttons with "Run Dashboard" button at end

This is what I see in Project B: menu of run-related buttons similar to the one in Project A, but without the "Run Dashboard" button

This option is present but not activatable out in Project B: screenshot of search for "Run Dashboard" feature showing it grayed out

but it's activatable in Project A: screenshot of search for "Run Dashboard" feature showing it selectable

like image 562
sonerila Avatar asked Mar 22 '18 08:03

sonerila


Video Answer


2 Answers

Add the run configurations to the Configurations available in Run Dashboard list in the Edit Run/Debug Configurations dialog under the Defaults (Templates in the current IDE versions) node:

dashboard

In Spring Boot projects Run Dashboard becomes enabled automatically if you have more than one run/debug configuration of this type.

like image 114
CrazyCoder Avatar answered Oct 09 '22 22:10

CrazyCoder


@CrazyCoder is right, you need to have more than one "Spring boot run/debug configuration". Try to duplicate the one you already have and IntelliJ will automaticaly prompt you to run the dashboard.

like image 21
Lamine Mbn Avatar answered Oct 09 '22 22:10

Lamine Mbn