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