如何在项目继承了父项目的情况下引入SpringBoot?

项目想引入SpringBoot框架,我们可以通过继承spring-boot-starter-parent来实现。如下:

xml 复制代码
<!-- Inherit defaults from Spring Boot -->
<parent>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>
	<version>3.2.0</version>
</parent>

但有时候项目可能需要有公司标准的父项目需要继承,这样我们就没办法使用上面的方式来引入SpringBoot了。不过,我们可以通过下面的方式来引入SpringBoot:

xml 复制代码
<dependencyManagement>
    <dependencies>
        <dependency>
            <!-- Import dependency management from Spring Boot -->
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>3.2.0</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

为什么通过第二种方式能够实现同样的目的?

那我们先看第一种通过继承的方式引入SpringBoot做了什么?

<parent>标签的作用是使一个项目继承父项目中pom的所有配置。

然后我们点开spring-boot-starter-parent父项目的pom看到所有的依赖都在<dependencyManagement>中声明,并且没有在dependencies中声明依赖。

就是说我们的项目继承了父项目pring-boot-starter-parent<dependencyManagement>标签的所有配置依赖。

第二种配置方式做了什么?

import

This scope is only supported on a dependency of type pom in the <dependencyManagement> section. It indicates the dependency is to be replaced with the effective list of dependencies in the specified POM's <dependencyManagement> section. Since they are replaced, dependencies with a scope of import do not actually participate in limiting the transitivity of a dependency.

上面为maven官方文档对于import作用域的描述。意思是:import仅支持在<dependencyManagement><dependency>中使用。这表示这个依赖会被替换成这个依赖的<dependencyManagement>中配置的依赖。

简单的说就是,当我们使用第二种配置方式来引入SpringBoot,那么会将spring-boot-starter-parent依赖的pom文件的<dependencyManagement>标签内配置的依赖全部替换到当前项目的<dependencyManagement>中。

这样,我们发现第一种方式和第二种方式实现的效果是一样的。

参考文档

Maven官方文档 - 对于依赖的scope的描述

Spring Boot官方文档 - 如何通过不继承parent的方式使用Spring Boot

相关推荐
HanhahnaH2 分钟前
Spring集合注入Bean
java·spring
未定义.2218 分钟前
电子削铅笔刀顺序图详解:从UML设计到PlantUML实现
java·软件工程·uml
雾月5525 分钟前
LeetCode 1292 元素和小于等于阈值的正方形的最大边长
java·数据结构·算法·leetcode·职场和发展
24k小善1 小时前
Flink TaskManager详解
java·大数据·flink·云计算
想不明白的过度思考者1 小时前
Java从入门到“放弃”(精通)之旅——JavaSE终篇(异常)
java·开发语言
.生产的驴2 小时前
SpringBoot 封装统一API返回格式对象 标准化开发 请求封装 统一格式处理
java·数据库·spring boot·后端·spring·eclipse·maven
猿周LV2 小时前
JMeter 安装及使用 [软件测试工具]
java·测试工具·jmeter·单元测试·压力测试
晨集2 小时前
Uni-App 多端电子合同开源项目介绍
java·spring boot·uni-app·电子合同
时间之城2 小时前
笔记:记一次使用EasyExcel重写convertToExcelData方法无法读取@ExcelDictFormat注解的问题(已解决)
java·spring boot·笔记·spring·excel
椰羊~王小美2 小时前
LeetCode -- Flora -- edit 2025-04-25
java·开发语言