我已经安装了一个应用程序,当我试图运行它(它是一个可执行的jar)什么都没有发生。当我从命令行运行它时:
Java -jar "app.jar"
我得到了以下信息:
在“app.jar”中没有主清单属性
通常,如果我自己创建了这个程序,我就会向清单文件添加一个主类属性。但在这种情况下,由于文件来自应用程序,我不能这样做。我还尝试提取jar,看看是否能找到主类,但有很多类,没有一个在它的名称中有“main”这个词。必须有一种方法来修复这个问题,因为程序在其他系统上运行良好。
我已经安装了一个应用程序,当我试图运行它(它是一个可执行的jar)什么都没有发生。当我从命令行运行它时:
Java -jar "app.jar"
我得到了以下信息:
在“app.jar”中没有主清单属性
通常,如果我自己创建了这个程序,我就会向清单文件添加一个主类属性。但在这种情况下,由于文件来自应用程序,我不能这样做。我还尝试提取jar,看看是否能找到主类,但有很多类,没有一个在它的名称中有“main”这个词。必须有一种方法来修复这个问题,因为程序在其他系统上运行良好。
当前回答
检查你的jar文件MANIFEST。MF Main-Class是否可用
first.java
class first
{
public static void main (String arg[ ])
{
System.out.println("Welcome to the world of Java");
}
}
之前:
Manifest-Version: 1.0
Created-By: 1.7.0_80 (Oracle Corporation)
sony@sony-VPCEH25EN:~/Documents$ java -jar first.jar
no main manifest attribute, in first.jar
后:
Manifest-Version: 1.0
Created-By: 1.7.0_80 (Oracle Corporation)
Main-Class: first
sony@sony-VPCEH25EN:~/Documents$ java -jar first.jar
Welcome to the world of Java
其他回答
以我为例——我从事的是一个多模块项目——我可以用以下方式介绍这个问题:
我将其添加到父文件pom.xml中,这导致了问题。即,值为true的skip:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--
besides hindering the packaging, this also skips running the app after build when calling spring-boot:run. You have to enable it in the
corresponding module by setting skip to false, there.
-->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
我修复了这个问题,通过添加相同的配置到模块,我想打包成一个jar,但改变了跳过的值为false:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<mainClass>${project.mainClass}</mainClass>
<layout>ZIP</layout>
<skip>false</skip>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
<execution>
<id>build-info</id>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
(第一个帖子-所以可能不干净)
这是我对OS X 11.6的修复,基于maven的Netbeans 8.2程序。到目前为止,我的应用程序是100%的Netbeans -没有调整(只是一些shell逃脱为不可能!)。
在这里和其他地方尝试了几乎所有的答案都无济于事之后,我回到了“使用有用的东西”的艺术上。
上面的答案(olivier-refalo,谢谢)看起来是正确的起点,但并没有帮助。
看看其他成功的项目,我注意到清单行中有一些微小的差异:
addClasspath, classpathPrefix不存在(已删除) mainClass缺少了“com”。(使用NB ->项目 属性->运行->主类->浏览指定)
不知道为什么(我只有3个月的java)或如何,但只能说这是有效的。
下面是修改后的manifest块:
<manifest>
<mainClass>mypackage.MyClass</mainClass>
</manifest>
这是因为Java无法在MANIFEST中找到Main属性。MF文件。 Main属性对于告诉java应该使用哪个类作为应用程序的入口点是必要的。在jar文件中,是MANIFEST。MF文件位于META-INF文件夹中。想知道如何查看jar文件中的内容吗?用WinRAR打开jar文件。
MANIFEST中的主属性。MF是这样的:
Main-Class: <packagename>.<classname>
当manifest中缺少这一行时,您会得到这个“no main manifest attribute”错误。MF文件。
在MANIFEST中指定这个属性真的很麻烦。MF文件。
更新:我刚刚找到了一种非常简洁的方法来在eclipse中指定应用程序的入口点。 当你说导出时,
Select Jar and next
[ give it a name in the next window ] and next
and next again
and you'll see " Select the class of the application entry point".
Just pick a class and Eclipse will automatically build a cool MANIFEST.MF for you.
您可以简单地将其添加到属性标签中。当您有多个子模块时,也可以这样做,为每个子模块的pom.xml添加它
这是我的pom。xml,
<properties>
<java.version>11</java.version>
<startclass>com.sample.MyApplication</start-class>
</properties>
只需将其添加到java模块的build.gradle中。它将创建可执行jar。 它将包含存档中的依赖库。
jar {
manifest {
attributes "Main-Class": "com.company.application.Main"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
这将导致[module_name]/build/libs/[module_name].jar文件。 我用shell进行了测试。