<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>com.xxx.XxxApplication</mainClass> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
1.org.springframework.boot:spring-boot-maven-plugin:2.2.1.RELEASE:repackage failed: Unable to find main class
2.找不到符號
如果使用SpringBoot打包插件如下
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
如果使用了這個打包插件,那麼我們就必須有一個類別使用了@SpringBootApplication註解,否則打包的時候將會報repackage failed: Unable to find main class。
如果我們的專案打包只是一個普通的工具包,那麼什麼打包插件都不用加,maven使用預設方式給我們打包,不用配置(了解maven預設方式配置可網上查,網上很多)。
如果我們的專案是多層構建(多Module)方式構建,在打包的時候只是一個普通module,但是還是報repackage failed: Unable to find main class錯誤,這個時候我們就來看看module的父級專案是否加入了SpringBoot打包插件,因為打包插件也會繼承。所以建議不要為了方便而直接在父級專案加入SpringBoot的打包插件,而是那個Module需要打包為SpringBoot專案再加入SpringBoot打包插件。
關於maven預設打包方式中(如下圖),package是以jar方式打包,所以沒有必要再pom.xml配置,除非我們只是打包為pom,我們可以配置< ;packaging>pom,否則沒有必要配置。當然多module的最頂級一定是pom打包方式。
一個專案有多個main.class,導致打包時maven不知道使用哪一個為主入口,這裡我們需要設定
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>com.demo.springboot.DemoSbApplication</mainClass> </configuration> </plugin> </plugins> </build>
這個原因一般是我們在打包時,打包項目是打jar包,又引用了其他module。
而其他module沒使用jar方式打包,對於springboot來說就是設定了<packaging>pom</packaging>
,這種肯定是找不到類,所以我們只要設定那個module的打包方式為<packaging>jar</packaging>
就可以了。注意:這裡有可能引發Unable to find main class問題。
以上是Springboot怎麼使用maven打包指定mainClass的詳細內容。更多資訊請關注PHP中文網其他相關文章!