PagedResources<Resource and RestTemplate does not works

蓝咒 提交于 2019-12-06 14:21:33

问题


I am using Spring Boot REST example. In this I am using RestTemplate to call the endpoint which returns PagedResources<Resource<EmployeeDto>> Object. But when calling through RestTemplate, I did not get any contents. However this service is build in another microservice which easily accessible over web and can be call through Postman.

@GetMapping("/{employeeId}/employees")
public PagedResources<Resource<EmployeeDto>> getEmployyes(@PathVariable(name="employeeId") String employeeId, 
        @RequestParam(defaultValue="0",required = false, name="page") Integer page, 
        @RequestParam(defaultValue="25",required = false, name = "size") Integer size,
        @RequestParam(defaultValue="billingNumber") String sortParam,
        @RequestParam(defaultValue="ASC",required = false) Direction direction,
        Pageable pageable, HttpServletRequest request) throws IOException{

    return employeeService.getEmployeesByCid(employeeId, request);
}

I used below code and it gives me no contents.

String uri = "http://localhost:8080/employee-api/employees/160166/employees?page=0&size=25";

RestTemplate template = new RestTemplate();
ResponseEntity<PagedResources<Resource<EmployeeDto>>> studentResponse = template
        .exchange(uri, HttpMethod.GET, null, new TypeReferences.PagedResourcesType<Resource<EmployeeDto>>(){});
System.out.println(studentResponse.getBody());

If I used below, then I get the response.

final ResponseEntity<String> studentResponse = template
                .exchange(URL, HttpMethod.GET, null, String.class);

Note: If I execute code through Postman I get below response.

{
  "_embedded": {
    "employeeDto": [
      {
        "employeeNumber": "3109194",
        "status": "A"
      },
      {
        "employeeNumber": "3109224",
        "status": "A"
      },
      {
        "employeeNumber": "3109514",
        "status": "A"
      },
      {
        "employeeNumber": "3109519",
        "status": "A"
      }
    ]
  },
  "_links": {
    "first": {
      "href": "http://localhost:8080/customers/1/employee-numbers?sortParam=employeeNumber&page=0&size=4&sort=employeeNumber,asc"
    },
    "prev": {
      "href": "http://localhost:8080/customers/1/employee-numbers?sortParam=employeeNumber&page=0&size=4&sort=employeeNumber,asc"
    },
    "self": {
      "href": "http://localhost:8080/customers/1/employee-numbers?sortParam=employeeNumber&page=1&size=4&sort=employeeNumber,asc"
    },
    "next": {
      "href": "http://localhost:8080/customers/1/employee-numbers?sortParam=employeeNumber&page=2&size=4&sort=employeeNumber,asc"
    },
    "last": {
      "href": "http://localhost:8080/customers/1/employee-numbers?sortParam=employeeNumber&page=3&size=4&sort=employeeNumber,asc"
    }
  },
  "page": {
    "size": 4,
    "totalElements": 14,
    "totalPages": 4,
    "number": 1
  }
}

回答1:


I was able to solved this by looking at http://izeye.blogspot.com/2015/01/consume-spring-data-rest-hateoas-hal.html and Why does RestTemplate not bind response representation to PagedResources?.

However, this is the code I developed which works very fine.

public class Demo {
    private static RestTemplate restTemplate() {
        ObjectMapper mapper = new ObjectMapper();
        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
        mapper.registerModule(new Jackson2HalModule());

        MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();
        converter.setSupportedMediaTypes(MediaType.parseMediaTypes("application/hal+json"));
        converter.setObjectMapper(mapper);

        return new RestTemplate(Collections.<HttpMessageConverter<?>> singletonList(converter));
    }

    public static void main(String[] args) throws JsonParseException, JsonMappingException, IOException {
        String URL = "http://localhost:8080/employee-api/employees/160166/employees?page=0&size=25";

        RestTemplate restTemplate = restTemplate();

        ResponseEntity<PagedResources<Resource<EmployeeDto>>> result = restTemplate.exchange(URL, HttpMethod.GET,
                null/* httpEntity */, new ParameterizedTypeReference<PagedResources<Resource<EmployeeDto>>>() {});
        PagedResources<Resource<EmployeeDto>> body = result.getBody();
        ObjectMapper mapper = new ObjectMapper();
        String writeValueAsString = mapper.writeValueAsString(body);

        System.out.println(mapper.writeValueAsString(body));
    }
}


来源:https://stackoverflow.com/questions/59104894/pagedresourcesresource-and-resttemplate-does-not-works

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!