码迷,mamicode.com
首页 > 编程语言 > 详细

解决 SpringBoot 没有主清单属性

时间:2016-12-28 21:07:41      阅读:582      评论:0      收藏:0      [点我收藏+]

标签:end   结构   artifact   boot   使用   html   属性   目录   丢失   

问题:SpringBoot打包成jar后运行提示没有主清单属性

 

解决:补全maven中的bulid信息

                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <version>${spring.version}</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>repackage</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>

 

原因:

因为我使用spring-boot-dependencies这个BOM代替了spring-boot-starter-parent这个parent POM(详见13.2.2. Using Spring Boot without the parent POM

导致spring-boot-maven-plugin的配置项丢失,使得打包后的jar中的MANIFEST.MF文件缺少Main-Class。

 

PS: 当打包类型为jar时,spring-boot-maven-plugin的打包过程与直接使用maven-jar-plugin完全不同。生成的jar目录结构也有很大不同...

解决 SpringBoot 没有主清单属性

标签:end   结构   artifact   boot   使用   html   属性   目录   丢失   

原文地址:http://www.cnblogs.com/niceboat/p/6230448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!