欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

no main manifest attribute, in xxx.jar

程序员文章站 2022-04-27 23:43:16
...

在Linux中,用java -jar xxx.jar启动的时候,报错:

no main manifest attribute, in xxx.jar

查找资料发现, 是打包的时候,需要在pom.xml文件中加入:

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
</plugin>