springboot mavenjar中没有主清单属性
时间: 2023-11-29 14:22:16 浏览: 92
Spring Boot jar中没有主清单属性的解决方法
:Main-Class,怎么解决?
对于这个问题,可以在pom.xml文件中添加如下配置:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.example.demo.DemoApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
其中,mainClass需要改成你的springboot项目中主类的全路径名。这样就可以在打包为jar文件时自动添加主清单属性了。
阅读全文