5

构建没有依赖项的spring boot jar文件的最简单方法是什么?基本上我应该能够将依赖 jar 文件保存在单独的文件夹中。

目前我正在使用 spring boot maven 插件,但是,它创建了一个包含所有依赖项的 Fat jar 文件。

4

4 回答 4

4

根本不使用spring-boot-maven-plugin并使用 JAR 包装。这样构建不会将依赖项打包到 JAR 中。

于 2015-11-09T12:12:18.147 回答
3

spring-boot-maven-plugin 具有重新打包选项,可将依赖项放入内部(制作 uber jar)

您可以禁用重新打包或使重新打包的 .jar 与其他分类器一起使用 [2]

  1. http://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-maven-plugin.html

  2. http://docs.spring.io/spring-boot/docs/current/maven-plugin/examples/repackage-classifier.html

于 2016-06-16T14:39:58.050 回答
1

下面是我在How to Create an Executable JAR with Maven中找到的解决方案,您只需将它们放入您的插件中。

<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}/libs
                </outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <configuration>
        <archive>
            <manifest>
                <addClasspath>true</addClasspath>
                <classpathPrefix>libs/</classpathPrefix>
                <mainClass>
                    org.baeldung.executable.ExecutableMavenJar
                </mainClass>
            </manifest>
        </archive>
    </configuration>
</plugin>
于 2019-11-20T16:19:48.870 回答
0

将 pom.xml 中的构建条目更改为

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>3.1.1</version>
            <executions>
              <execution>
                <id>copy-dependencies</id>
                <phase>package</phase>
                <goals>
                  <goal>copy-dependencies</goal>
                </goals>
                <configuration>
                  <outputDirectory>${project.build.directory}/dependency_jar</outputDirectory>
                  <overWriteReleases>false</overWriteReleases>
                  <overWriteSnapshots>false</overWriteSnapshots>
                  <overWriteIfNewer>true</overWriteIfNewer>
                </configuration>
              </execution>
            </executions>
          </plugin>
    </plugins>

在目标文件夹中,将有一个包含所有依赖项 jar 的dependency_jar 文件夹,以及“project_name.jar”(fat jar)和“project_name.jar.original” (代码的 jar 文件)

于 2018-06-25T13:09:44.437 回答