博主使用的2.2.1.RELEASE版本的spring-boot,此博客基于2.2.1版本进行分析。
我们使用idea构建spring boot项目时,我们项目中的pom.xml文件中会引入:
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.1.RELEASE</version>
</parent>
spring-boot-starter-parent-2.2.1.RELEASE.pom以spring-boot-dependencies作为父pom。
进入spring-boot-dependencies.pom文件中我们会发现一个<dependencyManagement>元素。
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
......
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
......
</dependencies>
</dependencyManagement>
maven中的dependencyManagement元素提供管理依赖版本的方式。该元素中定义依赖的jar的版本号,我们在自己的pom.xml文件中可以直接引入不带版本号的jar(如下),maven会自动引入与spring-boot-dependencies.pom文件中dependencyManagement元素内定义的对应版本的jar。我们项目的pom.xml文件中引入以下依赖,会自动引入2.2.1.RELEASE版本的jar.
PS:如果子pom文件中指定jar的版本号,子pom中的版本会覆盖父pom中声明的版本。而且dependencyManagement只是做依赖的声明,并不做引入操作,所以子项目中还需要显式的声明依赖的jar
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
如果不想使用spring-boot-starter-parent,我们任然可以通过使用scope=import dependency来在自己的pom中保持依赖管理
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.2.2.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>