首页 > 其他分享 >Bean method 'eurekaHealthCheckHandler' not loaded because @ConditionalOnProperty (eureka.c

Bean method 'eurekaHealthCheckHandler' not loaded because @ConditionalOnProperty (eureka.c

时间:2023-01-13 23:39:04浏览次数:37  
标签:because ConditionalOnProperty enabled eureka client healthcheck loaded


springboot项目报错:

Bean method 'eurekaHealthCheckHandler' not loaded because @ConditionalOnProperty (eureka.client.healthcheck.enabled) did....

eureka配置一下healthcheck即可。注意,idea不能提示这个属性,得手动敲。

eureka:
client:
service-url:
default: http://127.0.0.1:8761/eureka
healthcheck:
enabled: true


标签:because,ConditionalOnProperty,enabled,eureka,client,healthcheck,loaded
From: https://blog.51cto.com/u_15936016/6006773

相关文章