小标
2019-05-09
来源 :
阅读 3763
评论 0
摘要:本文主要向大家介绍了JAVA语言之repackage failed: Unable to find main class,通过具体的内容向大家展示,希望对大家学习JAVA语言有所帮助。
本文主要向大家介绍了JAVA语言之repackage failed: Unable to find main class,通过具体的内容向大家展示,希望对大家学习JAVA语言有所帮助。

一.错误信息
SpringBoot进行Maven install操作时报repackage failed: Unable to find main class -> [Help 1]的错误,信息如下
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.0.4.RELEASE:repackage (default) on project qfxSpringbootReadPropertiesDemo: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:2.0.4.RELEASE:repackage failed: Unable to find main class -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] //cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException二.错误原因
因为没有正式环境的入口类,项目结构如下:
pom.xml文件的<build>配置信息如下:
三.解决方案1
pom.xml文件的<build>中指定入口类,代码如下
<configuration>
<mainClass>com.qfx.App</mainClass>
</configuration>
如图
四.解决方案2
去掉<build>配置信息中spring热部署的配置,如图
五.解决方案3
修改pom.xml配置文件<build>内容如下,添加一个<pluginManagement>标签,代码如下
<build>
<finalName>test</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
<!-- spring热部署 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.8.RELEASE</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>六.再次执行 Maven install,一切正常
本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注编程语言JAVA频道!
喜欢 | 0
不喜欢 | 0
您输入的评论内容中包含违禁敏感词
我知道了

请输入正确的手机号码
请输入正确的验证码
您今天的短信下发次数太多了,明天再试试吧!
我们会在第一时间安排职业规划师联系您!
您也可以联系我们的职业规划师咨询:
版权所有 职坐标-一站式AI+学习就业服务平台 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
沪公网安备 31011502005948号