Skip to content

Commit

Permalink
upup
Browse files Browse the repository at this point in the history
  • Loading branch information
l10178 committed Oct 18, 2023
1 parent 97f3ec0 commit 3fb0461
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/docs/guides/migrating-spring-to-spring-boot.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ Maven 项目 parent 统一使用公司新 parent pom,这里定义了 Spring Bo
- 老项目切换到 Spring Boot 先分析实际生效的 maven dependency,关注下核心包版本是否有大的升级,是否可能对业务造成影响。
- Spock and Groovy:Spock 由原来的 1.x 升级到 2.x 版本,同时 Groovy 升级到 4.x 版本,Junit4 升级到 Junit5。

## spring-boot-starter-actuator
### spring-boot-starter-actuator

目前强制依赖 `spring-boot-starter-actuator`,容器镜像里使用它实现健康检查。
另外强制依赖 `spring-boot-starter-web`,因为有些基础组件依赖了 `ServletContext`

注意:
actuator 的引入会带来一些额外收益,之前我们健康检测只检查服务端口是否有响应,而 actuator 默认还额外检查各个中间件的状态,业务方可根据需要自行增加或删除某些中间件的状态到健康检测服务,具体方式和更多高级应用参考 spring-boot-starter-actuator 官方文档。

## cms-spring-cloud-starter
### cms-spring-cloud-starter

配置中心 starter,类似 spring-cloud-consul/nacos/config,对接配置中心,实现配置文件动态加载、刷新,代替原 ReloadablePropertySourcesPlaceholderConfigurer。

Expand Down

0 comments on commit 3fb0461

Please sign in to comment.