我在我的 Spring Boot 应用程序(使用执行器)中配置了以下运行状况检查属性,并在使用以下端点进行本地测试时返回“UP”
server:
servlet:
context-path: /account/v1
port: 8443
management:
endpoints:
web:
path-mapping:
health: /health
使用“http://localhost:8443/account/v1/actuator/health”在本地检查并返回 {"status":"UP"}"
在 PCF 中,我将运行状况检查类型更新为“http”,将端点更新为“/actuator/health”。当我推送我的应用程序时,我收到以下错误
2020-09-02T12:43:15.92+0530 [HEALTH/0] ERR Failed to make HTTP request to '/actuator/health' on port 8080: connection refused
2020-09-02T12:43:15.92+0530 [CELL/0] ERR Failed after 1m0.632s: readiness health check never passed.
请对此提供帮助。(我的端口或端点是否错误)