在 jersey 项目中包含 jersey-bom 导入范围依赖项的目的是啥?
Posted
技术标签:
【中文标题】在 jersey 项目中包含 jersey-bom 导入范围依赖项的目的是啥?【英文标题】:What is the purpose of including the jersey-bom import scoped dependency in a jersey project?在 jersey 项目中包含 jersey-bom 导入范围依赖项的目的是什么? 【发布时间】:2014-05-17 05:12:40 【问题描述】:使用the jersey-quickstart-grizzly2
工件生成基于jersey 的项目时
mvn archetype:generate -DarchetypeArtifactId=jersey-quickstart-grizzly2 \
-DarchetypeGroupId=org.glassfish.jersey.archetypes -DinteractiveMode=false \
-DgroupId=com.example -DartifactId=simple-service -Dpackage=com.example \
-DarchetypeVersion=2.7
pom 生成了一个jersey-bom
依赖可以删除:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>$jersey.version</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
还有这个依赖:
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
</dependency>
这是maven依赖图的样子:
在项目中包含jersey-bom
依赖的目的是什么?
【问题讨论】:
【参考方案1】:您不应从dependencyManagement
中删除jersey-bom
。
BOM(物料清单)打包相关的依赖项,以便它们的版本可以协同工作。您可以在 this page 上的 maven 文档中阅读更多相关信息。
因为它存在于dependencyManagement
(而不是dependencies
)中,它实际上并没有向您的项目添加依赖项,它只是集中了版本管理。如果您不熟悉其中的区别,请在this SO answer 中阅读更多内容。
基本上,BOM 允许您根据需要添加任意数量的球衣依赖项,而不必担心混合不良版本:
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
<!-- NO VERSION NEEDED BECAUSE OF THE BOM -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<!-- NO VERSION NEEDED BECAUSE OF THE BOM -->
</dependency>
</dependencies>
【讨论】:
以上是关于在 jersey 项目中包含 jersey-bom 导入范围依赖项的目的是啥?的主要内容,如果未能解决你的问题,请参考以下文章