微服务 - RestTemplate UnknownHostException

Microservices - RestTemplate UnknownHostException

我有一个 Eureka 服务注册服务器的简单设置,一个用于 public API 的服务和一个从 public API 调用的服务休息模板。 Eureka 告诉我服务已成功注册,但是当我调用服务时

@Service
public class MyServiceService {

    @Autowired
    private RestTemplate restTemplate;

    private final String serviceUrl;

    public MyServiceService() {
        this.serviceUrl = "http://MY-SERVICE";
    }

    public Map<String, String> getTest() {

        Map<String, String> vars = new HashMap<>();
        vars.put("id", "1");

        restTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory());

        return restTemplate.postForObject(serviceUrl+"/test", "", Map.class, vars);
    }
}

我得到以下异常

Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed;
  nested exception is org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://MY-SERVICE/test": MY-SERVICE;
  nested exception is java.net.UnknownHostException: MY-SERVICE] with root cause java.net.UnknownHostException: MY-SERVICE

我创建了一个示例项目来说明我的设置,也许有人可以看看它并告诉我我的设置有什么问题。

https://github.com/KenavR/spring-boot-microservices-example

谢谢

根据 patrick-grimard switching to Brixton and changing the code were needed fixed the issues. Working Solution is on Github 的建议。

还将发布的 id 从请求参数更改为请求正文,这也改变了我将其添加到请求的方式。

服务端点

@RequestMapping(method = RequestMethod.POST, produces = "application/json; charset=utf-8")
public @ResponseBody Map<String, String> getTest(@RequestBody Map<String, Long> params) {

    Map<String, String> response = new HashMap<>();

    response.put("name", "My Service");

    return response;
}

创建RestTemplate

@Configuration
public class PublicAPIConfiguration {
    @LoadBalanced
    @Bean
    RestTemplate restTemplate() {
        return new RestTemplate();
    }
}

呼叫服务

@Service
public class MyServiceService {

    @Autowired
    private RestTemplate restTemplate;

    private final String serviceUrl;

    public MyServiceService() {
        this.serviceUrl = "http://my-service";
    }

    public Map<String, String> getTest() {

        Map<String, Long> vars = new HashMap<>();
        vars.put("id", 1L);

        return restTemplate.postForObject(serviceUrl+"/test", vars, Map.class);
    }
}

仅供将来可能碰巧遇到此问题的任何人使用,我有完全相同的堆栈跟踪,但解决方案略有不同。

从编码的角度来看,我的问题与配置无关。它与我 运行 代码所在的服务器有关。我忽略了它在没有 DNS 的 DMZ 上的事实,因此您必须手动将域映射到 IP。

或多或少,确保你的 DNS 在你的服务器上正确配置,因为从 restTemplate 的角度来看,它会抛出这个确切的堆栈跟踪。

@LoadBalanced 添加到 RestTemplate bean 创建对我有用