【Spring】解决actuator访问gateway相关端点404

0.场景复现

0.1 spring cloud 版本

2022.0.0-RC2

0.2 配置文件

1
2
3
4
5
6
7
8
9
# 端点检查放开所有
management:
endpoints:
web:
exposure:
include: "*"
endpoint:
health:
show-details: always

1.原因分析

配置文件改了.

2.解决办法

1
2
3
4
5
6
7
8
9
10
11
management:
endpoints:
web:
exposure:
include: "*"
endpoint:
health:
show-details: always
# 重点在这里,默认为false,所以没有gateway相关端点,打开后就可以访问
gateway:
enabled: true

【Spring】解决actuator访问gateway相关端点404
https://www.yangxj96.com/Spring/GatewayActuator404/
作者
道一
发布于
2022年12月24日
许可协议