SpringBoot版本升级方案

本文给大家介绍如何安全的升级工程中的SpringBoot版本

为什么要升级工程中的SpringBoot版本?

  • 提升程序的稳定性
  • 提升程序的性能
  • 提升程序的安全性
  • 修复历史版本中存在的问题
  • 应用新版本特性
  • 参考SpringBoot文档: https://docs.spring.io/spring-boot/docs/2.4.5/reference/htmlsingle/#getting-started-upgrading-from-an-earlier-version

    以我的测试工程为例: https://github.com/netbuffer/spring-boot-demo ,大家可以克隆下来测试使用
    1.编辑工程配置 pom.xml ,添加 spring-boot-properties-migrator 依赖项

            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-properties-migrator</artifactId>
                <scope>runtime</scope>
            </dependency>