在idea中是没有dashBoard控制面板的,需要进行配置

Intellij IDEA 中 Spring Cloud 的 Run Dashboard面板

配置步骤

1.在.idea/workspace.xml 文件中找到

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

2.添加以下节点

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

保存文档,就能在idea中看到dashboard面板

相关文章:

  • 2022-12-23
  • 2021-12-02
  • 2021-07-01
  • 2022-02-20
  • 2021-11-16
  • 2021-12-25
  • 2021-11-19
猜你喜欢
  • 2021-07-31
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
  • 2022-12-23
  • 2021-06-19
  • 2021-11-11
相关资源
相似解决方案