Spring Cloud RestTemplate报错:java.lang.IllegalStateException: No instances available for

java.lang.IllegalStateException: No instances available for localhost

 

 

原:restTemplate.getForObject( uri+"/user/getname",User.class); //uri为得到的地址 如:http://127.0.0.1

改:rrestTemplate.getForObject( "http://user-api/user/getname",User.class);//改为在eureka上注册的application.name

 

restTemplate访问https,这个暂时没有去测试,希望对大家有用

https://cloud.tencent.com/developer/article/1339988

你可能感兴趣的:(异常问题)