使用SpringBoot的RestTemplate类

时间:2018-03-30 12:37:30

标签: java spring-boot microservices resttemplate

我是微服务架构客户端的新手。我正在构建一个基于休息的客户端,使用上面的代码提交我的表单数据。

public ResponseEntity<?> saveCustomerInfo(RegisterCustomer customerModel) {
    RestTemplate restTemp = new RestTemplate();

    String url= "http://localhost:8081/applicationDemo/saveCustInfo";

    HttpEntity http = new HttpEntity(customerModel);

    System.out.println(customerModel);
    ResponseEntity resp = 
    restTemp.postForEntity(url,http,ResponseEntity.class);

    System.out.println(resp.getBody());
    return null;

当我使用POSTMAN测试上面的代码时,它显示如下所示的异常:

  

org.springframework.web.client.HttpClientErrorException:415 null

我无法得到出错的原因,因为当我点击没有客户端的微服务时,它会保存数据。但是当我使用这个基于Rest模板的方法时,它会显示上述异常。

0 个答案:

没有答案