IDEA如何快速打开【RUN Dashboard】模式

方法一

在这里插入图片描述

方法二

在项目的主目录下,找到.idea,打开workspace.xml,找到类似节点的位置

  <component name="RunManager">
	XXXX
  </component>
    <component name="XXXX">
	XXXX
  </component>
    <component name="XXXXX">
	XXXX
  </component>

在其上面或下面加入

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

如下
在这里插入图片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章