小编典典

如果您正在使用Spring Platform Bom,则应该使用父项吗?

spring-boot

某些依赖版本不存在,因此我添加了spring平台BOM,parent声明仍然有用吗?

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

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>io.spring.platform</groupId>
            <artifactId>platform-bom</artifactId>
            <version>1.1.1.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

阅读 523

收藏
2020-05-30

共1个答案

小编典典

我个人更喜欢以platform-bom父母身份使用,即

<parent>
    <groupId>io.spring.platform</groupId>
    <artifactId>platform-bom</artifactId>
    <version>1.1.1.RELEASE</version>
    <relativePath />
</parent>

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

这样,我不必定义spring-boot版本号,它会随着spring平台的较新版本自动更新,并且我不必担心任何不一致之处。

有关所有托管依赖项的完整列表,请参见http://docs.spring.io/platform/docs/1.1.1.RELEASE/reference/htmlsingle/#appendix-
dependency-
versions。

编辑 :正如安迪·威尔金森(Andy Wilkinson)指出的那样,spring平台继承了spring-boot-starter- parent所有“合理的默认值”,如http://docs.spring.io/spring-
boot/docs/1.2.1.RELEASE/reference/htmlsingle/#using-
启动专家也适用。

2020-05-30