idea display Services toolbar scheme

Idea's Services window can display the project's entry guide class and port, and can easily start and stop related services.

 

If it is not displayed in your own idea, you can solve it by the following methods:

1. Find the workspace.xml file of your .idea workspace

 

2. Search for " RunDashboard " in the file. If this component does not exist, add the following content, otherwise modify it to the following content. After the modification, save it

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

3. Restart idea

 

 

4. After the restart is complete, a pop-up window of services will appear in the lower right corner of the idea, just open and select the first link


DashBoard in IDEA does not display the port number solution

  1. close all java processes
  2. Go to the "C:\Users\username\AppData\Local\Temp\hsperfdata_username" directory and delete the "hsperfdata_username" folder.
  3. Restart IDEA and start the project in Dashboard, then you can see the port number behind the corresponding process in DashBoard.

Guess you like

Origin blog.csdn.net/qq_42857603/article/details/108376284