Spring Boot 构建系统

  • 构建系统

    在Spring Boot中,选择构建系统是一项重要的任务。我们建议使用Maven或Gradle,因为它们为依赖项管理提供了良好的支持。Spring不能很好地支持其他构建系统。
  • 依赖管理

    Spring Boot团队提供了一系列依赖关系,以支持每个版本的Spring Boot版本。您不需要在构建配置文件中提供依赖项的版本。Spring Boot根据发行版自动配置依赖项版本。请记住,当您升级Spring Boot版本时,依赖项也会自动升级。
    -如果要指定依赖版本,则可以在配置文件中指定它。但是,Spring Boot团队强烈建议不需要为依赖关系指定版本。
  • Maven依赖

    对于Maven配置,我们应该继承Spring Boot Starter父项目来管理Spring Boot Starters的依赖项。为此,我们可以简单地继承pom.xml文件中的starter-parent,如下所示。
    
    <parent>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-parent</artifactId>
       <version>2.3.0.BUILD-SNAPSHOT</version>
    </parent>
    
    我们应该为Spring Boot Parent Starter依赖项指定版本号。然后,对于其他启动程序依赖项,我们不需要指定Spring Boot版本号。遵守下面给出的代码-
    
    <dependencies>    
       <dependency>   
          <groupId>   org.springframework.boot</groupId>        
          <artifactId>        spring-boot-starter-web</artifactId>      
       </dependency>  
    </dependencies>   
    
  • Gradle依赖

    我们可以将Spring Boot Starters依赖项直接导入build.gradle文件中。我们不需要像Maven for Gradle这样的Spring Boot start Parent依赖项。遵守下面给出的代码-
    
    buildscript {
       ext {
          springBootVersion = '2.3.0.BUILD-SNAPSHOT'
       }
       repositories {
          mavenCentral()
       }
       dependencies {
          classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
       }
    }
    
    同样,在Gradle中,我们不需要为依赖关系指定Spring Boot版本号。Spring Boot根据版本自动配置依赖关系。
    
    dependencies {
       compile('org.springframework.boot:spring-boot-starter-web')
    }