新建SpringBoot项目Bug:xxx-1.0-SNAPSHOT.jar中没有主清单属性

项目场景:

提示:新建Spring Boot项目踩坑的Bug

例如:搭建SpringBoot项目,服务器运行java -jar包报错xxx-1.0-SNAPSHOT.jar中没有主清单属性


问题及解决方案

例如:Idea通过install打的jar包放到服务器上,运行java -jar xxx.jar提示:没有主清单属性
pom.xml代码:加上如下配置

<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>

猜你喜欢

转载自blog.csdn.net/weixin_50160384/article/details/135556562