我正在尝试更新到SpringBoot2.3,在这样做的过程中,我们必须重新执行运行状况检查,以匹配spring的新组接口。我能够访问/internal/health并查看信息,而且spring正确地获取了我的两个健康组,ready和live,但我无法访问他们在/internal/health/ready和/internal/health/live的信息,因为我认为我应该能够从spring的文档中访问他们的信息。要访问这些端点,我是否缺少一个步骤?
我将包括我的yml代码下面,我可以包括指标,以及如果需要,但他们很简单,似乎工作,所以我现在不为简洁的缘故。
management:
server:
port: 10445
servlet.context-path: /
endpoints:
web:
base-path: /internal
exposure.include: live, health, metrics, prometheus, ready
endpoint:
health:
group:
live:
include: liveIndicator
show-details: always
ready:
include: readyIndicator, bootstrapIndicator
show-details: always
暂无答案!
目前还没有任何答案,快来回答吧!