我使用maven生成了一个jar并包含了这个清单文件
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.tdkcloud.TdkCloudApplication</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
但是当我跑步时
java -jar tdk-web-0.0.1-SNAPSHOT.jar
我收到了这个错误:
Error: no se ha encontrado o cargado la clase principal com.tdkcloud.TdkCloudApplication
我解开了罐子,班级就在那里!
这里是清单文件:
Manifest-Version: 1.0
Implementation-Title: tdk-web
Implementation-Version: 0.0.1-SNAPSHOT
Archiver-Version: Plexus Archiver
Built-By: nunito
Implementation-Vendor-Id: com.tdk.web
Created-By: Apache Maven 3.3.3
Build-Jdk: 1.8.0_77
Implementation-URL: http://projects.spring.io/spring-boot/tdk-cloud
/tdk-web/
Implementation-Vendor: Pivotal Software, Inc.
Main-Class: com.tdkcloud.TdkCloudApplication
答案 0 :(得分:3)
1. 为Spring启动JarLauncher设置Start-Class
<properties>
<start-class>com.tdkcloud.TdkCloudApplication</start-class>
</properties>
2. 将Spring Boot maven插件添加到您的pom.xml
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
3.经过上述更改后,已生成 MANIFEST.MF 应如下所示。
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.tdkcloud.TdkCloudApplication
您可以找到官方文档here。
答案 1 :(得分:0)