禁用intellij spring启动仪表板

问题描述 投票:12回答:3

Intellij现在配备了一个springboot仪表板。我已经足够勇敢地启用它,但现在我想禁用它,因为它让我感到困惑。

我在哪里可以找到设置?在设置中我什么也看不见

spring-boot intellij-idea
3个回答
13
投票

Intellij 2017.2

您可以在Show in Run Dashboard对话框中禁用/取消选择Run/Debug Configurations配置选项,该选项可通过Run > Edit Configurations访问。

要在Intellij 2017.3中做同样的事情,请看看this answer

要在Intellij 2018.3中做同样的事情,请看看this answer


22
投票

Intellij 2017.3

您可以通过删除Spring Boot仪表板来禁用:

  • Run/Debug Configurations
  • Defaults配置中,选择Spring Boot仪表板并单击-按钮

intellij2017.3


15
投票

Intellij 2018.3

默认值显然被templates取代。并且您只能在Run Dashboard中移入和移出配置类型。

要执行此操作,例如所有应用程序运行/调试配置,您必须这样做

  • Edit Configurations...
  • >选择左侧的Templates类别
  • > Configurations available in Run Dashboard
  • >选择您要删除的类别
  • >击中了-按钮

enter image description here

编辑:在Jetbrain的文档中找到它:https://www.jetbrains.com/help/idea/creating-and-editing-run-debug-configurations.html#run-dashboard

© www.soinside.com 2019 - 2024. All rights reserved.