parent
在建立springboot 项目的时候,官网给出了如下引入方式
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.6</version>
</parent>
那么parent标签的作用是什么呢?
parent作用是继承,继承父pom文件中的配置。spring-boot-starter-parent中有一些关于springboot的公有配置,让开发者更简单的使用springboot(不用复杂的配置)