我一直在尝试从 Spring Boot 1.x 迁移到 Spring Boot 2.4.2。我对执行器的 /health 端点有疑问,它说:
"clientConfigServer": {
"status": "UNKNOWN",
"details": {
"error": "no property sources located"
}
}
在活动的个人资料中。对于旧版本,一切都按预期工作,我收到:
"configServer": {
"status": "UP",
"propertySources": [
"file:C:\\Users\user\projects\tagging.yml",
]
}
这是一个错误还是我做错了什么?