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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_40369944/article/details/84991021

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

猜你喜欢

转载自blog.csdn.net/qq_40369944/article/details/84991021
今日推荐