简体   繁体   English

为SpringBoot应用程序构建了两个JAR

[英]Two JARs are built for SpringBoot application

I am using spring boot 1.4.1 and have built a very simple application. 我正在使用Spring Boot 1.4.1,并构建了一个非常简单的应用程序。 I see two JARs are getting built (abc.jar and abc-boot.jar) using maven when I use the following pom.xml. 当我使用以下pom.xml时,我看到使用maven构建了两个JAR(abc.jar和abc-boot.jar)。 How will I avoid building abc.jar as it simply wastes overall build time? 我如何避免构建abc.jar,因为它只是浪费了整个构建时间?

The pom.xml is pasted below - pom.xml粘贴在下面-

<?xml version="1.0" encoding="UTF-8"?>
<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>abc</groupId>
    <artifactId>abc</artifactId>
    <version>0.0.1</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.1.RELEASE</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <!-- Need to avoid putting version in final jar's name -->
        <finalName>abc</finalName>
        <plugins>
            <plugin>
                <!-- Package as an executable jar -->
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>xyz.Application</mainClass>
                    <layout>ZIP</layout>
                    <classifier>boot</classifier>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-failsafe-plugin</artifactId>
                <executions>
                    <execution>
                        <id>integration-test</id>
                        <goals>
                            <goal>integration-test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

You are getting two jars because you have configured Spring Boot's Maven plugin with a classifier. 您将得到两个jar,因为您已使用分类器配置了Spring Boot的Maven插件。 This means that the fat jar that it produces is created alongside the normal jar. 这意味着它产生的脂肪罐是在普通罐子旁边创建的。

If you'd like a single jar to be produced and for it to be a fat jar, you should remove the <classifier>boot</classifier> from the plugin configuration. 如果您想生产一个jar并将其变成一个胖jar,则应从插件配置中删除<classifier>boot</classifier>

You are getting two artifacts because the default assembly pluing is creating abc.jar and your added spring-boot-maven-plugin will produce another jar with the name abc-boot.jar. 您将得到两个工件,因为默认的程序集连接正在创建abc.jar,并且添加的spring-boot-maven-plugin将产生另一个名称为abc-boot.jar的jar。
Alternatively, you can get rid of the spring-boot-maven plugin and still be able to produce one executable jar. 或者,您可以摆脱spring-boot-maven插件,但仍然能够生成一个可执行jar。 This can be done by configuring the maven assembly plugin as shown in the below example. 这可以通过配置maven程序集插件来完成,如以下示例所示。

<project>
  [...]
  <build>
    [...]
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          [...]
          <archive>
            <manifest>
              <mainClass>org.sample.App</mainClass>    //specify your spring-boot main class here.
            </manifest>
          </archive>
        </configuration>
        [...]
      </plugin>
      [...]
</project>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM