There was an unexpected error (type=Internal Server Error, status=500). I/O error on GET request for

在这里插入图片描述
nested exception is java.net.UnknownHostException: CLOUD-PROVIDER-SERVICE
出现这种问题是当前微服务有两个端口,不知道你要用哪个?

@Configuration
public class ApplicationContextConfig {
    
    
    @Bean
    @LoadBalanced
    public RestTemplate getRestTemplate(){
    
    
        return new RestTemplate();
    }
}

猜你喜欢

转载自blog.csdn.net/qq_37805943/article/details/112386257