本文给大家介绍如何安全的升级工程中的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>