spring-boot-dependencies 和 spring-boot-starter-parent

copy自:spring-boot-dependencies 和 spring-boot-starter-parent

构建springboot项目有两种方式:

第一种是继承spring-boot-starter-parent

pom里面指定parent项目:

  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.5.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
  </parent>

[推荐,常用]第二种是通过dependencyManagement进行依赖管理

    <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>

共同点

这两种方式,我们在使用spring-boot-starter的时候都不需要指定版本;

 

  继承spring-boot-starter-parent其实也算是继承自spring-boot-dependencies,我们点开spring-boot-starter-parent,可以看到parent其实也是继承dependencies,parent里面就增加了一些插件,然后指定了maven编译版本:

 

posted on 2022-08-04 22:19  小破孩楼主  阅读(1110)  评论(0编辑  收藏  举报