SpringBoot、SpringCloud之Maven打包Failed to execute goal org.springframework.boot:spring-boot-maven-plug

问题还原:

我们的项目使用的是SpringCloud(微服务),之前本地启动启动类一直没有问题,结果今天需要上线,在打包部署的时候,突然发现package或者install不了。具体报错如下所示:
Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.2.5.RELEASE:repackage (default) on project ***-service: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:2.2.5.RELEASE:repackage failed: Unable to find a single main class from the following candidates [*.***, ***.*]
SpringBoot、SpringCloud之Maven打包Failed to execute goal org.springframework.boot:spring-boot-maven-plug_第1张图片

如何解决那?。

解决方案:

其实错误信息提示的已经很清楚了,提示找不到一个唯一的主函数。但是当时信息是一行展示的、并且时间挺紧的,着急,也就没仔细看。找了好久,一位老同事给我发消息说是不是有多个启动main,我才意识到另一个工具类中有当时测试写的main函数,注掉之后就可以正常打包了。
PS:干项目要细心啊,不然大意失荆州!细心、细心、细心!

PS:欢迎大家点赞、关注、支持。如有需要,欢迎添加博主QQ沟通交流!QQ:156587607

你可能感兴趣的:(SpringCloud,SpringBoot,Maven,spring,boot,maven,spring,spring,cloud,java)