依赖项

由于各个 Spring Data 模块的起始日期不同,其中大部分都带有不同的主版本号和次版本号。找到兼容模块的最简单方法是依赖于我们随兼容版本一起发布的 Spring Data Release Train BOM。在 Maven 项目中,您可以在 POM 的 <dependencyManagement /> 部分中声明此依赖项,如下所示

使用 Spring Data release train BOM
<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.data</groupId>
      <artifactId>spring-data-bom</artifactId>
      <version>2024.0.0</version>
      <scope>import</scope>
      <type>pom</type>
    </dependency>
  </dependencies>
</dependencyManagement>

当前的 release train 版本是 2024.0.0。train 版本使用 calver,模式为 YYYY.MINOR.MICRO。版本名称遵循 ${calver},适用于 GA 版本和服务版本,以及以下模式适用于所有其他版本:${calver}-${modifier},其中 modifier 可以是以下之一

  • SNAPSHOT:当前快照

  • M1M2 等:里程碑

  • RC1RC2 等:候选版本

您可以在我们的 Spring Data 示例存储库 中找到使用 BOM 的工作示例。有了它,您可以在 <dependencies /> 块中声明您想要使用的 Spring Data 模块,无需版本,如下所示

声明对 Spring Data 模块(如 JPA)的依赖项
<dependencies>
  <dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-jpa</artifactId>
  </dependency>
<dependencies>

Spring Boot 的依赖项管理

Spring Boot 为您选择了 Spring Data 模块的最新版本。如果您仍想升级到较新版本,请将 spring-data-bom.version 属性设置为您想要使用的 train 版本和迭代

请参阅 Spring Boot 的 文档(搜索“Spring Data Bom”)了解更多详情。

Spring Framework

当前版本的 Spring Data 模块需要 Spring Framework 6.1.7 或更高版本。这些模块也可能适用于该次要版本中较早的错误修复版本。但是,强烈建议使用该版本中的最新版本。