写了一个小的springboot demo,构建时由于没加构建的maven插件,导致使用java -jar命令运行时报错xxxxxxx.jar中没有主清单属性
。
<build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><version>3.1.2</version> <!-- 请替换为你需要的版本 --><executions><execution><goals><goal>repackage</goal></goals></execution></executions></plugin></plugins>
</build>