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-dependencies 和 spring-boot-starter-parent

 

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

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/278963.html

(0)
上一篇 2022年8月4日
下一篇 2022年8月4日

相关推荐

发表回复

登录后才能评论