在idea中把springboot项目打成jar包遇到的问题(没有主清单属性)(没有内置tomcat)(闪退)

Posted 406070989senlin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在idea中把springboot项目打成jar包遇到的问题(没有主清单属性)(没有内置tomcat)(闪退)相关的知识,希望对你有一定的参考价值。

在idea中把springboot项目打成jar包遇到的问题:没有主清单属性

也就是你打好的jar包中的META-INF的MANIFEST文件中没有

Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: 入口类权限定名
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/

 

解决方法:加这个插件(标红的一定要自己加上去,因为spring的官方生成文件没有这个)

 

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

</plugin>
如果还没有解决,就有可能你的pom文件的插件不干净
idea自己生成的maven项目里pom自带的插件会影响打包
比如说:
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
<pluginManagement/>
有了这个的项目打jar包时,jar包不会内置tomcat
这也是明明打好包又没报错为什么用命令打开时会报:没有主清单属性或闪退的原因(没有内置到tomcat)

所以打包时要确认自己的pom文件中的插件要干净
 <build>
              <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <goals>
                                <goal>repackage</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
    </build>

 

 

以上是关于在idea中把springboot项目打成jar包遇到的问题(没有主清单属性)(没有内置tomcat)(闪退)的主要内容,如果未能解决你的问题,请参考以下文章

工作经验使用IDEA将SpringBoot项目打成Jar包

工作经验使用IDEA将SpringBoot项目打成Jar包

ideal中把项目打成war包,并放在tomcat运行,遇见的问题。。。

SpringBoot+Docker项目打包(jar)和部署

05_SpringBoot打jar/war包解决第三方依赖jar包的问题

SpringBoot将项目打包成jar包