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

2022/8/4 23:23:04

本文主要是介绍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编译版本:

 



这篇关于spring-boot-dependencies 和 spring-boot-starter-parent的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程