Spring Boot-如果您已经有父pom,则为父pom


184

是否有特定的推荐方法将spring-boot父pom包含在已经具有必需的父POM的项目中?

对于需要从组织上级扩展的项目,您有什么建议(这是非常普遍的,甚至很多/大多数项目根据它们来自的Feeder存储库发布到Maven Central)。大多数构建工作都与创建可执行JAR相关(例如,运行嵌入式Tomcat / Jetty)。有一些结构化方法的方法,这样您就可以获取所有依赖关系而无需从父级扩展(类似于合成vs.继承)。但是您无法以这种方式获得构建内容。

因此,最好将所有spring-boot父pom包含在所需的父POM内,或者仅在项目POM文件中具有POM依赖项。

还有其他选择吗?

TIA,

史考特

Answers:


179

您可以像使用“ bom”一样使用spring-boot-starter-parent(请参阅Spring和Jersey现在支持该功能的其他项目),并将其仅包含在scope = import的依赖项管理部分中。这样您将获得很多收益使用它的好处(即依赖项管理),而无需替换实际父项中的设置。

它做的另外2件事是

  1. 定义属性负载以快速设置要覆盖的依赖项版本
  2. 使用默认配置配置一些插件(主要是Spring Boot maven插件)。因此,如果您使用自己的父母,那么您将必须手动执行这些操作。

Spring Boot文档中提供的示例:

<dependencyManagement>
    <dependencies>
        <dependency>
            <!-- Import dependency management from Spring Boot -->
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>2.1.3.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

1
我猜想这确实会插入插件-阴影等吗?
chrislovecnm 2015年

3
否。请阅读链接:“您仍然可以保留依赖关系管理的好处(但不能保留插件管理的好处)”。
Dave Syer

1
@DaveSyer请说明:1:当我有我的自定义时project-parent,可以添加spring-boot-starter-parent到此project-parent-可以吗?spring-boot-dependencies在这种情况下我也需要吗?2:正常的spring-boot项目我使用spring-boot:run运行。如何使用不同的父pom运行项目?
jsosnowski

1
上面的代码段足以获取依赖项管理功能。如果您想要插件(如spring-boot:run),则需要分别对其进行混淆。您可以根据需要从Boot父级复制粘贴。
Dave Syer

3
我知道这是一个老话题,但是它对我有很大帮助,谢谢。我最终在源代码maven.apache.org/guides/introduction/…上阅读了有关此机制的文章。它解释了很多。
bazeusz16年

42

用1.5.9.RELEASE更新2018-01-04。

我在这里有完整的代码和可运行的示例https://www.surasint.com/spring-boot-with-no-parent-example/

您需要此作为基本

   <dependencyManagement>
        <dependencies>
            <dependency>
                <!-- Import dependency management from Spring Boot -->
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${springframework.boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

但这还不够,您还需要显式定义spring-boot-maven-plugin的目标(如果您将Spring Boot用作父项,则不必显式定义此目标)

    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <version>${springframework.boot.version}</version>
            <executions>
                <execution>
                    <goals>
                        <goal>repackage</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>

否则,您将无法构建为可执行jar或war。

尚未,如果您正在使用JSP,则需要具备以下条件:

<properties>    
  <failOnMissingWebXml>false</failOnMissingWebXml>
</properties>

否则,您将收到以下错误消息:

    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project spring-boot-09: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executi
ng in update mode) -> [Help 1]

否否,如果您使用带有“ @”而不是“ $ {}”的带有Spring Boot的Maven配置文件和资源过滤器,那么这还不够(例如此示例https://www.surasint.com/spring-boot-maven -resource-filter /)。然后,您需要在其中明确添加

    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
        </resource>
    </resources>

而这个

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.7</version>
            <configuration>
                <delimiters>
                    <delimiter>@</delimiter>
                </delimiters>
                <useDefaultDelimiters>false</useDefaultDelimiters>
            </configuration>
        </plugin>

请参阅链接https://www.surasint.com/spring-boot-with-no-parent-example/中的示例。


@Arvind警告,我的示例是1.5.9。您应该使用1.5.11(昨天发布),因为此版本已修复了严重的安全问题。
Surasin Tancharoen

如您的博客所述,我尝试添加maven-resources-plugin,但仍然给我“目标中没有主清单属性”。我试过运行spring-boot:run,这也不起作用:(
sagar27

@ sagar27您正在使用哪个版本1.5.X或2.x?如果是2.x,则可能需要更多内容。
Surasin Tancharoen

谢谢 !!您救了我的命
Jey Atiwat

0

根据Surasin Tancharoen的回答,您可能还需要定义maven surefire插件

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>${maven-surefire-plugin.version}</version>
        </plugin>

并可能包括故障快速插件

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-failsafe-plugin</artifactId>
        <version>${maven-failsafe-plugin.version}</version>
        <executions>
            <execution>
                <goals>
                    <goal>integration-test</goal>
                    <goal>verify</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.