欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效

程序员文章站 2024-03-14 08:47:34
...

先贴出xml配置,去.idea文件下,修改workspace.xml,快捷键Ctrl+F 搜索RunDashboard定义到下面的位置,将原先的缺少option的component覆盖掉。

  <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>

此时,我就迫不及待的重启,发现并没有出现Run Dashboard。
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效

出现这样问题的原因其实很简单,Run Dashboard是SpringBoot项目才有的功能,我原先的项目是使用maven构建的,没有修改配置,可以看到下面是这样显示的
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效
此时需要将项目修改为springboot
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效
点击springboot,然后再mainClass输入带有springboot启动类的项目的主类名
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效
然后apply退出,就会发现RunDashboard已经出现
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效
之后在按同样的方式将其他带有springboot启动类去edit Configurations将其修改为springboot。好了,就到这了,五一不能停,继续码。
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效

日拱一卒,得寸进尺。

相关标签: 日常bug