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,这个暂时没有去测试,希望对大家有用
评论 (0)