替换 Spring Boot 2.6.4 的 HealthAggregator

发布于 2025-01-10 21:14:19 字数 725 浏览 0 评论 0原文

我想迁移使用此依赖项的旧 Spring 项目:

    org.springframework.boot.actuate.health.HealthAggregator
    org.springframework.boot.actuate.health.OrderedHealthAggregator
    ..........
    @Autowired
    private final HealthAggregator healthAggregator = new OrderedHealthAggregator();

该类需要导入:

'org.springframework.boot:spring-boot-actuator-autoconfigure:2.0.2.RELEASE'

我尝试使用 Spring Boot 2.6.4 版本中的最新版本:

import org.springframework.boot.actuate.health.StatusAggregator;
import org.springframework.boot.actuate.health.OrderedHealthAggregator;

但我找不到哪个类正在替换 OrderedHealthAggregator

你知道Spring Boot 2.6.4中应该使用哪个类吗?

I want to migrate old Spring project which is using this dependency:

    org.springframework.boot.actuate.health.HealthAggregator
    org.springframework.boot.actuate.health.OrderedHealthAggregator
    ..........
    @Autowired
    private final HealthAggregator healthAggregator = new OrderedHealthAggregator();

This Class requires import of:

'org.springframework.boot:spring-boot-actuator-autoconfigure:2.0.2.RELEASE'

I tried to use the latest version in version Spring Boot 2.6.4:

import org.springframework.boot.actuate.health.StatusAggregator;
import org.springframework.boot.actuate.health.OrderedHealthAggregator;

But I can't find which class is replacing OrderedHealthAggregator

Do you know which class should be used in Spring Boot 2.6.4?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兮子 2025-01-17 21:14:19

OrderedHealthAggregator 已替换为 SimpleStatusAggregator

OrderedHealthAggregator was replaced by SimpleStatusAggregator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文