[IDEA] IDEA 中 Run Dashboard 面板开启

Run Dashboard 面板开启

Posted by Mr.Vincent on 2019-06-14
Estimated Reading Time 1 Minutes
Words 167 In Total
Viewed Times

配置文件

首先找到你项目下的 .idea 包,然后找的 .idea 下的 workspace.xml 文件

1

通过搜索 RunDashboard 快速定位到配置文件的具体位置
2

<component name="RunDashboard"> 中的代码替换为以下代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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>
<option name="contentProportion" value="0.20765027" />
</component>

最后需要重启 IDEA


If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !