PagedResources<Resource and RestTemplate does not works
问题 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,