如果您正在使用Spring Platform Bom,则应该使用父项吗?
某些依赖版本不存在,因此我添加了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>
回答:
我个人更喜欢以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-
启动专家也适用。
以上是 如果您正在使用Spring Platform Bom,则应该使用父项吗? 的全部内容, 来源链接: utcz.com/qa/415127.html