本文介绍了无法在可部署的 .jar 中加载主类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试构建一个可执行的 jar 并收到错误 错误:无法找到或加载主类 com.company.app.Main
.我已经重新启动了我的电脑并尝试清理这个项目.我也试过使用 <addClasspath>true</addClasspath>
没有运气...
I'm trying to build an executable jar and am getting the error Error: Could not find or load main class com.company.app.Main
. I've rebooted my PC and tried a clean on this project. I've also tried using <addClasspath>true</addClasspath>
with no luck...
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.company.app.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
推荐答案
$ tree executable-jar-with-dependencies/
executable-jar-with-dependencies/
|-- pom.xml
`-- src
`-- main
`-- java
`-- com
`-- stackexchange
`-- stackoverflow
`-- ExecutableJar.java
6 directories, 2 files
pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.stackoverflow</groupId>
<artifactId>question-19281476</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!--
I prefer to use the maven-shade-plugin because the final built artifact maintains the original name
instead of appending "jar-with-dependencies" to the built artifact. But the maven-assembly-plugin works fine too.
-->
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals><goal>shade</goal></goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.stackexchange.stackoverflow.ExecutableJar</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.stackexchange.stackoverflow.ExecutableJar</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
ExecutableJar.java:
ExecutableJar.java:
package com.stackexchange.stackoverflow;
public class ExecutableJar {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
现在从命令行执行以下操作演示了这一点:
Now executing the following from the command line demonstrates this works:
$ mvn clean package
$ java -jar target/question-19281476-1.0-SNAPSHOT-jar-with-dependencies.jar
Hello World
这篇关于无法在可部署的 .jar 中加载主类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!