项目wiki提供了如何从早期版本的Spring Boot升级的说明。按照发行说明部分中的链接查找要升级到的版本。

升级说明始终是发行说明中的第一项。如果您落后了一个以上的版本,请确保您还查看了您跳过的版本的发行说明。

1. Upgrading From 1.x

如果您正在从1.x版本的Spring Boot进行升级,请查看项目wiki上提供详细升级说明的“迁移指南”。另请查看“发行说明”,以获取每个版本的“新的和值得注意的”功能列表。

2. Upgrading to a New Feature Release

升级到新功能版本时,某些属性可能已被重命名或删除。Spring Boot提供了一种在启动时分析应用程序环境并打印诊断信息的方法,还可以在运行时为您临时迁移属性。要启用该功能,请向您的项目添加以下依赖项:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-properties-migrator</artifactId>
    <scope>runtime</scope>
</dependency>
           
           
Properties that are added late to the environment, such as when using @PropertySource, will not be taken into account.
Once you finish the migration, please make sure to remove this module from your project’s dependencies.

3. Upgrading the Spring Boot CLI

要升级现有的CLI安装,请使用相应的程序包管理器命令(例如,BREW升级)。如果您手动安装了CLI,请遵循标准说明,记住更新您的PATH环境变量以删除任何较旧的引用。

4. What to Read Next

一旦您决定升级您的应用程序,您可以在文档的其余部分找到有关特定功能的详细信息。

Spring Boot的文档特定于该版本,因此您在此处找到的任何信息都将包含该版本中的最新更改。