springboot-Test-1.0-SNAPSHOT.jar中没有主清单属性
时间: 2023-11-29 18:41:39 浏览: 99
Maven 项目生成jar运行时提示“没有主清单属性”
在运行使用maven打包的项目之后,如果提示"XXX--1.0-SNAPSHOT.jar中没有主清单属性",通常是因为缺少Spring Boot Maven插件的配置。为了解决这个问题,您需要在项目的pom.xml文件中添加以下配置:
```xml
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.6.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
```
这样配置后,再次使用maven打包您的项目,应该就能正确生成包含主清单属性的可执行jar文件。
阅读全文