unable to find java_JAVA语言之repackage failed: Unable to find main class

本文主要向大家介绍了JAVA语言之repackage failed: Unable to find main class,通过具体的内容向大家展示,希望对大家学习JAVA语言有所帮助。

unable to find java_JAVA语言之repackage failed: Unable to find main class_第1张图片一.错误信息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] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException

二.错误原因因为没有正式环境的入口类,项目结构如下:

pom.xml文件的配置信息如下:

三.解决方案1pom.xml文件的中指定入口类,代码如下

        com.qfx.App

如图

四.解决方案2去掉配置信息中spring热部署的配置,如图

五.解决方案3修改pom.xml配置文件内容如下,添加一个标签,代码如下

        test                                                        org.springframework.boot                    spring-boot-maven-plugin                                                                                                org.springframework                            springloaded                            1.2.8.RELEASE                                                                                    六.再次执行 Maven install,一切正常

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注编程语言JAVA频道!

你可能感兴趣的:(unable,to,find,java)