idea打开显示Service面板,快速启动多个微服务。

idea打开显示Service面板,快速启动多个微服务,多个微服务在一个面板显示。
平常启动Springboot项目是在run面板启动,如下图
idea打开显示Service面板,快速启动多个微服务。_第1张图片
如果是有多个微服务,不便于操作和管理。
此时可以开启Service面板,所有微服务可一键启停。

idea打开显示Service面板,快速启动多个微服务。_第2张图片
开启方法
打开父工程下面的.idea目录中的workspace.xml

idea打开显示Service面板,快速启动多个微服务。_第3张图片
在其中加入

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

重启服务,此时下方多了Service面板
在这里插入图片描述

你可能感兴趣的:(intellij-idea,微服务,java)