Spring Cloud Kubernetes FeignClient Error Spring Cloud Kubernetes FeignClient Error kubernetes kubernetes

Spring Cloud Kubernetes FeignClient Error


If you do not have a name set for some-service, and it's a 3rd party service, I think the better approach would be to call it via RestTemplate or something.

Feign client needs to have the service name configured and known, for it to call that particular service in the network using service discovery.


Well, I found that the discrepancy was at the some-service where the payload of was updated and my-service FeignClient was not updated. and hence caused the HTTP 404 Error. However it works now with the FeignClient properly and able to do a service discovery with the service name properly.