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文件中继承起始父级,如下所示。

<parent>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-parent</artifactId>
   <version>1.5.8.RELEASE</version>
</parent>

我们应该指定 Spring Boot Parent Starter 依赖项的版本号。那么对于其他starter依赖项,我们不需要指定Spring Boot版本号。观察下面给出的代码 -

<dependencies>
   <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
   </dependency>
</dependencies>

等级依赖

我们可以将 Spring Boot Starters 依赖项直接导入到build.gradle文件中。我们不需要像 Maven for Gradle 这样的 Spring Boot 启动父依赖。观察下面给出的代码 -

buildscript {
   ext {
      springBootVersion = '1.5.8.RELEASE'
   }
   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')
}