115

我在我的独立应用程序中使用 Maven,并且我想将我的 JAR 文件中的所有依赖项打包到一个库文件夹中,如此处的答案之一所述:

如何使用 Maven 创建具有依赖关系的可执行 JAR?

我希望我的最终 JAR 文件有一个库文件夹,其中包含作为 JAR 文件的依赖项,而不是像maven-shade-plugin.m2 文件夹中的 Maven 层次结构那样以文件夹形式放置依赖项的那种。

好吧,实际上当前配置可以满足我的需求,但是在运行应用程序时加载 JAR 文件时遇到问题。我无法加载课程。

这是我的配置:

<plugins>

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
            <execution>
                <id>copy-dependencies</id>
                <phase>prepare-package</phase>
                <goals>
                    <goal>copy-dependencies</goal>
                </goals>
                <configuration>
                    <outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
                    <overWriteReleases>false</overWriteReleases>
                    <overWriteSnapshots>false</overWriteSnapshots>
                    <overWriteIfNewer>true</overWriteIfNewer>
                </configuration>
            </execution>
        </executions>
    </plugin>

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
            <archive>
                <manifest>
                    <addClasspath>true</addClasspath>
                    <classpathPrefix>lib/</classpathPrefix>
                    <mainClass>com.myapp.MainClass</mainClass>
                </manifest>
            </archive>
        </configuration>
    </plugin>

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <source>1.6</source>
            <target>1.6</target>
        </configuration>
    </plugin>

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
            <execution>
                <id>install</id>
                <phase>install</phase>
                <goals>
                    <goal>sources</goal>
                </goals>
            </execution>
        </executions>
    </plugin>

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.5</version>
        <configuration>
            <encoding>UTF-8</encoding>
        </configuration>
    </plugin>

</plugins>

该项目在 Eclipse 中运行良好,并且 JAR 文件按照我的需要放在我的最终 JAR 文件内的库文件夹中,但是当从目标文件夹运行最终 JAR 文件时,我总是得到ClassNotFoundException

Exception in thread "main" java.lang.NoClassDefFoundError: org/springframework/context/ApplicationContext
Caused by: java.lang.ClassNotFoundException: org.springframework.context.ApplicationContext
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
Could not find the main class: com.myapp.MainClass. Program will exit.

我该如何解决这个异常?

4

8 回答 8

88

以下是我的解决方案。测试它是否适合您:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>copy-dependencies</id>
            <phase>prepare-package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
                <overWriteReleases>false</overWriteReleases>
                <overWriteSnapshots>false</overWriteSnapshots>
                <overWriteIfNewer>true</overWriteIfNewer>
            </configuration>
        </execution>
    </executions>
</plugin>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <configuration>
        <archive>
            <manifest>
                <addClasspath>true</addClasspath>
                <!-- <classpathPrefix>lib</classpathPrefix> -->
                <!-- <mainClass>test.org.Cliente</mainClass> -->
            </manifest>
            <manifestEntries>
                <Class-Path>lib/</Class-Path>
            </manifestEntries>
        </archive>
    </configuration>
</plugin>

第一个插件将所有依赖项放在 target/classes/lib 文件夹中,第二个插件将 library 文件夹包含在最终的 JAR 文件中,并配置Manifest.mf文件。

但是您需要添加自定义类加载代码来加载 JAR 文件。

或者,为了避免自定义类加载,您可以使用“${project.build.directory}/lib,但在这种情况下,最终 JAR 文件中没有依赖项,这违背了目的。

问这个问题已经两年了。尽管如此,嵌套 JAR 文件的问题仍然存在。我希望它可以帮助某人。

于 2014-08-04T10:35:56.857 回答
34

更新:

<build> 
  <plugins> 
    <plugin> 
    <artifactId>maven-dependency-plugin</artifactId> 
    <executions> 
      <execution> 
        <phase>install</phase> 
          <goals> 
            <goal>copy-dependencies</goal> 
          </goals> 
          <configuration> 
             <outputDirectory>${project.build.directory}/lib</outputDirectory> 
          </configuration> 
        </execution> 
      </executions> 
    </plugin> 
  </plugins> 
</build> 
于 2012-08-01T13:02:08.020 回答
24

最简单和最有效的方法是使用这样的 uber 插件:

          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <finalName>uber-${project.artifactId}-${project.version}</finalName>
            </configuration>
        </plugin>

您将在一个 JAR 文件中对所有内容进行反规范化。

于 2012-08-01T11:57:45.490 回答
13

可执行打包器 maven 插件可用于该目的:创建包含所有依赖项的独立 Java 应用程序作为特定文件夹中的 JAR 文件。

只需将以下内容添加到您pom.xml的部分内部<build><plugins>(请务必mainClass相应地替换 的值):

<plugin>
    <groupId>de.ntcomputer</groupId>
    <artifactId>executable-packer-maven-plugin</artifactId>
    <version>1.0.1</version>
    <configuration>
        <mainClass>com.example.MyMainClass</mainClass>
    </configuration>
    <executions>
        <execution>
            <goals>
                <goal>pack-executable-jar</goal>
            </goals>
        </execution>
    </executions>
</plugin>

target/<YourProjectAndVersion>-pkg.jar运行后生成的 JAR 文件位于mvn package. 它的所有编译时和运行时依赖项都将包含在lib/JAR 文件内的文件夹中。

免责声明:我是插件的作者。

于 2017-05-28T10:16:41.000 回答
5

按照这个链接:

如何:Eclipse Maven 安装带有依赖项的构建 jar

我发现这不是可行的解决方案,因为类加载器不会从 jar 中加载 jar,所以我认为我将解压缩 jar 中的依赖项。

于 2012-08-01T13:48:24.130 回答
3

这是我的做法:

    <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2</version>
            <configuration>
                <appendAssemblyId>false</appendAssemblyId>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <archive>
                    <manifest>
                        <mainClass>com.project.MainClass</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>

然后我就跑:

mvn assembly:assembly
于 2012-08-01T12:36:22.520 回答
2

我找到了这个问题的答案:

http://padcom13.blogspot.co.uk/2011/10/creating-standalone-applications-with.html

您不仅可以在 lib 文件夹中获得依赖的 lib 文件,还可以获得带有 unix 和 dos 可执行文件的 bin 目录。

可执行文件最终使用 -cp 参数调用 java,该参数也列出了所有依赖库。

全部位于目标文件夹内的 appasembly 文件夹中。史诗。

============= 是的,我知道这是一个旧线程,但它在搜索结果中仍然很高,所以我认为它可能会对像我这样的人有所帮助。

于 2015-04-21T16:10:27.780 回答
1

这显然是一个类路径问题。考虑到当您在 IDE 之外运行程序时,类路径必须发生一些变化。这是因为 IDE 会加载相对于项目根文件夹的其他 JAR,而对于最终 JAR,这通常不是真的。

在这些情况下,我喜欢手动构建 JAR。我最多只需要 5 分钟,它总能解决问题。我不建议你这样做。找到一种使用 Maven 的方法,这就是它的目的。

于 2012-08-01T11:56:54.913 回答