通常我们在创建springboot项目时,会指定parent为springboot的parent项目,类似这样
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.13.RELEASE</version>
<relativePath/>
</parent>
但是有的时候,在公司内部,封装了自己的parent项目,这个时候就不能再继承springboot的parent项目了,这个时候我们如果还想使用springboot parent项目中的dependencyManagement中指定的版本号的好处要怎么办呢,这种问题的解决办法就是在dependencyManagement中引入spring-boot-dependencies就可以,类似下面这样.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
这样,在子类中就可以不用指定版本号了,利用了springboot帮我们依赖管理的功能,同时还能引用我们公司自己的parent项目.