What should I do if the microservice does not prompt Run Dashboard

Sometimes idea will automatically prompt show Run Dashboard, but sometimes not, what should I do?

Find an .idea file in the local project directory

 Enter the .idea folder

Open the workspace.xml file, search for RunDashboard, add the following code, and restart idea

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

 

 

Guess you like

Origin blog.csdn.net/feikillyou/article/details/111330558