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

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

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

我个人更喜欢以

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-
启动专家也
适用。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4952231.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存