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>

如下
在這裏插入圖片描述

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