idea创建Maven 项目后,底部没有run窗口 且运行后报错No goals have been specified for this build.

Posted 寂静花开

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea创建Maven 项目后,底部没有run窗口 且运行后报错No goals have been specified for this build.相关的知识,希望对你有一定的参考价值。

出现run窗口

菜单栏—View—Tool Windows—run

点击红框内容

点击加号

点击Maven

点击OK

点击下图红框运行

解决报错

运行后报错No goals have been specified for this build.(尚未为此生成指定任何目标。)
在pom.xml中加入下列语句

  <build>
  	<defaultGoal>compile</defaultGoal>
  </build>

保存后再点击运行,则成功。

以上是关于idea创建Maven 项目后,底部没有run窗口 且运行后报错No goals have been specified for this build.的主要内容,如果未能解决你的问题,请参考以下文章

idea创建maven项目时一直在 Process Running

idea maven聚合项目创建子项目出现异常?

idea创建Maven后没有src目录和Pom.xml?

配置好maven后,设置tomcat:run运行程序

IDEA中Maven项目添加或识别至Springboot的Run Dashboard控制面板

IDEA中Maven项目添加或识别至Springboot的Run Dashboard控制面板