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
环境变量以删除任何较旧的引用。