标签: spring-boot spring-boot-actuator
我正在编写一个客户健康指标来检查与另一个应用的连接。但要检查这个,我需要在/ health端点的请求URL中有一些请求参数。(例如我想要的URL是“/ health?countryCode = IN”) 有没有办法实现这个目标? 感谢。
答案 0 :(得分:0)
只需注明请求:
public class CustomHealthIndicator{ @Autowire HttpServletRequest request; .... }