MAVEN依赖的版本仲裁机制

写在前面

官方文档:Introduction to the Dependency Mechanism

  • Dependency mediation - this determines what version of an artifact will be chosen when multiple versions are encountered as dependencies. Maven picks the “nearest definition”. That is, it uses the version of the closest dependency to your project in the tree of dependencies. You can always guarantee a version by declaring it explicitly in your project’s POM. Note that if two dependency versions are at the same depth in the dependency tree, the first declaration wins.
  • Dependency management - this allows project authors to directly specify the versions of artifacts to be used when they are encountered in transitive dependencies or in dependencies where no version has been specified.
规则总结:

MAVEN依赖的版本仲裁机制根据官方文档总结如下(并不是版本越大越优先使用的):
① 最短路径优先原则
② 相同路径优先声明原则
③ 显示指定优先原则

MAVEN版本仲裁

① 最短路径优先原则MAVEN依赖的版本仲裁机制_第1张图片
② 相同路径优先声明原则

MAVEN依赖的版本仲裁机制_第2张图片

③ 显示指定优先原则

如果A组件明确需要使用D的哪个版本,则需要在A组件中明确引用D组件并指定它的版本。

SPRING-BOOT的版本仲裁

每一个SpringBoot工程他都会指定父项目,父项目的主要作用是一般是来做依赖管理,父项目中可以声明非常多的依赖,子项目只要继承了父项目,子项目以后写依赖就不需要指定版本号了。

① 父项目[spring-boot-starter-parent]
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.4.2</version>
</parent>
② 父项目依赖于父依赖[spring-boot-dependencies]

在父依赖中声明了我们日常开发过程中需要用到的所有常用JAR包的版本号和相关依赖,这就是自动版本仲裁机制的基础和前提。

MAVEN依赖的版本仲裁机制_第3张图片MAVEN依赖的版本仲裁机制_第4张图片

那么,也就是说:
在我们的项目中,可以使用在spring-boot-dependencies中定义的依赖,而无需指定依赖的版本。
如:子项目B-》父项目A-》spring-boot-starter-parent-》spring-boot-dependencies
由于在spring-boot-dependencies中定义了:

<dependencyManagement>
	...
    <dependencies>
      <dependency>
        <groupId>org.apache.activemq</groupId>
        <artifactId>activemq-amqp</artifactId>
        <version>${activemq.version}</version>
      </dependency>
      <dependency>
        <groupId>antlr</groupId>
        <artifactId>antlr</artifactId>
        <version>${antlr2.version}</version>
      </dependency>
      ...
</dependencyManagement>

即使在父项目A中未指定activemq和antlr2的版本,也未进行定义,在子项目B中依然可以进行如下依赖的引入,这就是版本仲裁机制:

<dependencies>
   <dependency>
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-amqp</artifactId>
   </dependency>
   <dependency>
       <groupId>antlr</groupId>
       <artifactId>antlr</artifactId>
   </dependency>
   ...
</dependencies>
③ 如果想使用指定的版本怎么办?

A. 只在父项目A的中指定对应的版本即可,这样整个项目就会使用指定的版本。(需要去spring-boot-dependencies中查找该依赖的版本的命名)

<properties>
    <common-pool.version>2.6.2</common-pool.version>
    <lombok.version>1.18.16</lombok.version>
    ...
</properties>

MAVEN依赖的版本仲裁机制_第5张图片

B. 直接在子项目B中引入依赖并指定版本

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-pool2</artifactId>
    <version>2.6.2</version>
</dependency>

你可能感兴趣的:(MAVEN相关,SpringBoot,maven,java,spring,boot)