Open the run dashboard springboot

By default, idea of ​​run dashboard is off when it detects you have multiple projects springboot prompt box will pop up asking if open.

If we want to open your own, you need to modify the configuration.

In your idea of ​​project directory, there is a .idea catalog:

Among them, there is a workspace.xml:

Open, search Rundashboard, find the following passage:

  <component name="RunDashboard">
    <option name="ruleStates">
      <list>
        <RuleState>
          <option name="name" value="ConfigurationTypeDashboardGroupingRule" />
        </RuleState>
        <RuleState>
          <option name="name" value="StatusDashboardGroupingRule" />
        </RuleState>
      </list>
    </option>
  </component>

Then add the following in the Component:

<option name="configurationTypes">  
    <set>  
        <option value="SpringBootApplicationConfigurationType" />  
    </set>  
</option> 

 

Guess you like

Origin www.cnblogs.com/flypig666/p/11735907.html