xxxxx-0.0.1-SNAPSHOT.jar中没有主清单属性
Posted 蜡笔小心_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xxxxx-0.0.1-SNAPSHOT.jar中没有主清单属性相关的知识,希望对你有一定的参考价值。
1.springboot打包过程完成后,在cmd命令提示符窗口,使用 java -jar 命令执行生成的jar包时,出现 xxxxx-0.0.1-SNAPSHOT.jar中没有主清单属性 的情况
2.在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>
以上是关于xxxxx-0.0.1-SNAPSHOT.jar中没有主清单属性的主要内容,如果未能解决你的问题,请参考以下文章