前言
学习SpringCloud Eureka注册中心时,发现访问/actuator/info页面无法展示配置的info端点信息。
问题描述
yaml中Eureka客户端配置如下
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/ #eureka服务器地址
instance:
instance-id: spring-cloud-provider-8001 #修改eureka上的默认描述信息
prefer-ip-address: true #优先使用ip-address的配置
ip-address: localhost
#info配置
info:
app.name: spring-cloud-provider-8001
company.name: www.test.com
访问http://localhost:7001/eureka/
访问http://localhost:8001/actuator/info,提示404错误
原因:SpringBoot2.5.0或更高版本中info端点默认隐藏,因此需要配置将info端点暴露给web。
解决方案
- 在yaml中添加如下配置
management:
endpoints:
web:
exposure:
include: info #将info端点暴露给web(SpringBoot2.5.0或更高版本中info端点默认隐藏)
- 访问http://localhost:8001/actuator/info,不再提示404,但是info内容为空。
原因:在SpringBoot2.6版本以后,management.info.env.enabled的默认值被修改为false。
- 完善yaml中的配置,添加management.info.env.enabled
management:
endpoints:
web:
exposure:
include: info #将info端点暴露给web(SpringBoot2.5.0或更高版本中info端点默认隐藏)
info:
env:
enabled: true #是否在info端点中显示环境信息
- 再次访问http://localhost:8001/actuator/info,问题解决。
参考资料:https://stackoverflow.com/questions/70123650/spring-boot-2-6-actuator-info