91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Spring Boot對Maven與Plugin進行打包時出現異常如何解決

發布時間:2020-11-23 15:41:42 來源:億速云 閱讀:392 作者:Leah 欄目:開發技術

使用Spring Boot對Maven與Plugin進行打包時出現異常如何解決?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

【背景】spring-boot項目,打包成可執行jar,項目內有兩個帶有main方法的類并且都使用了@SpringBootApplication注解(或者另一種情形:你有兩個main方法并且所在類都沒有使用@SpringBootApplication注解),pom.xml如下

<plugin>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-maven-plugin</artifactId>
  <version>1.5.3.RELEASE</version>
  <executions>
    <execution>
      <goals>
        <goal>repackage</goal>
      </goals>
    </execution>
  </executions>
</plugin>

【問題】

執行mvn clean package,報錯如下(說點不相關的,使用install同理。因為spring-boot:repackage目標(goal)(下文會說)被綁定在package構建階段(phases),而package階段在install階段之前,指定構建階段之前的階段都會執行。詳細參見:Introduction to the Build Lifecycle)

  [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage (default) on project webapps-api-bid: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage failed: Unable to find a single main class from the following candidates [com.xx.api.main.ApiBidMain, com.xx.webapps.api.main.WebappsApiBidMain]

執行mvn clean package spring-boot:repackage,報錯如下,不如上面日志詳細

  [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage (default) on project webapps-api-bid: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage failed: Unable to find main class

【解決】

  Note:參考官網描述,沒有指定<mainClass>或者繼承了spring-boot-starter-parent并且<start-class>屬性未配置時,會自動尋找簽名是public static void main(String[] args)的方法... 所以插件懵逼了,兩個妹子和誰在一起呢...

[推薦] 通用解決方法:<configuration>下配置mainClass,指定程序入口。

<plugin>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-maven-plugin</artifactId>
  <version>1.5.3.RELEASE</version>
  <configuration>
    <mainClass>com.xx.webapps.api.main.WebappsApiBidMain</mainClass>
  </configuration>
  <executions>
    <execution>
      <goals>
        <goal>repackage</goal>
      </goals>
    </execution>
  </executions>
</plugin>

  Spring Boot Maven Plugin提供了幾個目標(goal),我們在<executions>標簽里配置的<goal>repackage</goal>對應spring-boot:repackage這個目標。

  • repackage: create a jar or war file that is auto-executable. It can replace the regular artifact or can be attached to the build lifecyle with a separate classifier.
  • run: run your Spring Boot application with several options to pass parameters to it.
  • start and stop: integrate your Spring Boot application to the integration-test phase so that the application starts before it.

  The plugin rewrites your manifest, and in particular it manages theMain-ClassandStart-Classentries, so if the defaults don't work you have to configure those there (not in the jar plugin). TheMain-Classin the manifest is actually controlled by thelayoutproperty of the boot plugin

  [譯] 該插件重寫了清單文件(MANIFEST.MF,也就是jar里面的清單文件),此文件管理著主類(Main-Class)和開始類(Start-Class)入口。清單文件中的Main-Class由layout控制

  這里的Start-Class就是我們配置的<mainClass>,而Main-Class受layout屬性的控制,別被名字搞亂了(是不是很詭異?看看解決方法二就明白為啥如此詭異了).... 來張圖直觀的感受下,對應使用上面xml配置打包后的清單文件(MANIFEST.MF):

  使用Spring Boot對Maven與Plugin進行打包時出現異常如何解決

  layout屬性默認不需要配置,插件會自動推斷。不同的layout屬性清單文件里面的Main-Class也會相應的不同。比如layout不配置或者配置為JAR對應的Main-Class是JarLauncher,layout配置為WAR對應的Main-Class是WarLauncher。

[有限制條件]解決方法二:如果你的pom繼承自spring-boot-starter-parent(注意此前提),也可以直接在<properties>配置<start-class>(其實這里的start-class直接對應清單文件里的Start-Class):

<properties>
  <start-class>com.xx.webapps.api.main.WebappsApiBidMain</start-class>
</properties>

解決方法三:打包的的時候注釋掉其他的@SpringBootApplication... 或者你有兩處main方法并且都沒有使用@SpringBootApplication注解,注釋掉一個main方法..... 這就是第三種解決方法233333

【隨便說說】

  說說spring-boot:repackage這個目標。Spring Boot Maven Plugin這個插件包含一系列目標(goal),我們在<executions>標簽里配置的<goal>repackage</goal>對應spring-boot:repackage這個目標,看下官方介紹:

  spring-boot:repackage repackages your jar/war to be executable.

  Repackages existing JAR and WAR archives so that they can be executed from the command line using java -jar. Withlayout=NONEcan also be used simply to package a JAR with nested dependencies (and no main class, so not executable).

  簡單點說,這貨重新打包個可執行的jar/war,可以在命令行使用-jar執行。如果指定layout為NONE那就沒有主類只是打個普通的jar(不可執行),一般不會這么做。

  一般情況,這個目標會打一個新的jar/war,并把maven默認打的jar/war添加.original后綴,在target目錄下可以看到:

使用Spring Boot對Maven與Plugin進行打包時出現異常如何解決

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

罗平县| 玉屏| 尉氏县| 灌云县| 富阳市| 若尔盖县| 大丰市| 宁津县| 东乡族自治县| 西乌珠穆沁旗| 琼结县| 和政县| 拉萨市| 青河县| 五华县| 泗水县| 新巴尔虎右旗| 公主岭市| 南京市| 房山区| 轮台县| 革吉县| 喜德县| 景德镇市| 盘山县| 合阳县| 辽中县| 大冶市| 望奎县| 广东省| 格尔木市| 万年县| 阳朔县| 西吉县| 同心县| 和平区| 瑞金市| 海宁市| 弋阳县| 鸡东县| 体育|