我想遷移使用此依賴項的舊 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 應該使用哪個類嗎?
uj5u.com熱心網友回復:
OrderedHealthAggregator被替換為SimpleStatusAggregator。
轉載請註明出處,本文鏈接:https://www.uj5u.com/gongcheng/436347.html
