Spring Boot:2.3.11.RELEASE Spring Cloud: 2.2.9.RELEASE
可能原因:
- /actuator相关的地址无法访问
- 服务依赖中间件DOWN掉,比如redis
第一种情况: ①
点击对应的/actuator相关接口404 Not found,路径问题
如果微服务配置了server.servlet.context-path
,需要额外增加配置:
我这里注册中心使用的nacos,其他注册中心参考对应文档
spring:
cloud:
nacos:
discovery:
metadata:
management.context-path: ${server.servlet.context-path}/actuator
② 我印象中如果SBA使用在Spring Cloud 中,微服务是不需要增加SBA Client依赖的,官方文档也是这样讲:
但实际是因为官网文档的示例是引入了Spring Security
,在该依赖中引入了spring.boot.actuator.autoconfigure
,因此在不使用Spring Security的服务中,需要单独引入SBA Client
,否则actuator相关的接口还是404
第二种情况:
服务依赖中间件DOWN掉,比如redis
在SBA 的健康栏中如果某个中间件,比如Redis是DOWN,那么在SBA的应用上看到的也是DOWN,我这边是已经修复了。
以上是遇到的几个问题,希望对你有帮助。