Spring Boot 简明教程
Spring Boot - Build Systems
在 Spring Boot 中,选择构建系统是一项重要任务。我们推荐 Maven 或 Gradle,因为它们为依赖管理提供了良好的支持。Spring 很好地不支持其他构建系统。
Dependency Management
Spring Boot 团队提供了依赖项列表来为其每个版本的 Spring Boot 版本提供支持。你无需在构建配置文件中为依赖项提供版本。Spring Boot 会根据版本自动配置依赖项版本。请记住,当你升级 Spring Boot 版本时,依赖项也会自动升级。
Note - 如果你想为依赖项指定版本,你可以在配置文件中指定它。但是,Spring Boot 团队强烈建议不需要为依赖项指定版本。
Maven Dependency
对于 Maven 配置,我们应继承 Spring Boot Starter 父项目以管理 Spring Boot Starter 依赖项。为此,我们可以像下面所示一样简单地继承 our pom.xml 文件中的 starter parent。
<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>
Gradle Dependency
我们可以直接将 Spring Boot Starter 依赖项导入 build.gradle 文件中。我们不需要像针对 Gradle 的 Maven 那样的 Spring Boot Start 父依赖项。观察下面给出的代码 −
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')
}