@@ -1,58 +0,0 @@ 打jar包,没有主清单属性 | 凤凰涅槃进阶之路

打jar包,没有主清单属性

Abel sun2022年12月24日约 79 字小于 1 分钟

打jar包,没有主清单属性

1. 背景

在springboot 设置打jar包后,使用java -jar 运行提示 没有主清单属性

image-20201026103541437

2. 解决办法

在pom文件中添加 spring-boot-maven-plugin 插件

    <build>

        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
     </build>
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.9.1