Spring Boot - 当你已经拥有父pom时父pom

时间:2014-01-23 18:56:17

标签: maven spring-boot parent-pom

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

对于需要从组织父级扩展的项目,您有什么建议(这是非常常见的,甚至很多/大多数项目都发布到Maven中心,具体取决于它们来自的支线回购)。大多数构建内容与创建可执行JAR(例如,运行嵌入式Tomcat / Jetty)有关。有一些方法可以构建事物,以便您可以获得所有依赖项而无需从父项扩展(类似于组合与继承)。你无法通过这种方式获得构建内容。

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

其他选择?

TIA,

斯科特

3 个答案:

答案 0 :(得分:154)

您可以像使用“bom”一样使用spring-boot-starter-parent(cf Spring和泽西岛其他支持此功能的项目),并将其仅包含在具有scope = import的依赖关系管理部分。这样您可以获得使用它的许多好处(即依赖关系管理),而无需替换实际父级中的设置。

它做的另外两件事是

  1. 定义一组属性,以便快速设置要覆盖的依赖项版本
  2. 使用默认配置(主要是Spring Boot maven插件)配置一些插件。因此,如果您使用自己的父母,那么您必须手动完成这些工作。
  3. Spring Boot documentation中提供的示例:

    <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 :(得分:30)

使用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或战争。

尚未,如果您使用的是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]

不,如果您使用Maven配置文件和资源过滤器与Spring Boot一起使用&#34; @&#34;这是不行的。而不是&#34; $ {}&#34; (如本例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/中的示例。

答案 2 :(得分: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>