I\'m trying to use Feign client. Below is my feing client:
import com.eprogrammerz.examples.domain.Movie;
import org.springframework.cloud.netflix.feign.Feig
It seems like that ClientAppApplication doesn't know your eureka server's address.
You could check you applation.yml
eureka
instance:
hostname: cloud-feignorder-consume
client:
register-with-eureka: false #default true
fetch-registry: true #default true
The last line you should check the property 'eureka.client.fetch-registry'.It should be true or not sign.Then your client could get the server list from eureka server.