1. 程式人生 > >repackage failed: Unable to find main class

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

2.原因
因為沒有正式環境的入口類,專案結構如下:

repackage failed: Unable to find main class

3.解決方案
pom.xml檔案的<build>中指定入口類,程式碼如下

<configuration>
        <mainClass>com.qfx.App</mainClass>
</configuration>

如圖

repackage failed: Unable to find main class

再次執行 Maven install,一切正常