您好,登錄后才能下訂單哦!
這篇“Springboot怎么使用maven打包指定mainClass”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Springboot怎么使用maven打包指定mainClass”文章吧。
<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</packaging>,否則沒有必要配置。當然多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”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。