We have JSON generated by Spring. This is Spring Data Page
{ "content" : [ { "id" : 1, "create_date" : "2016.01.12 12:24:06", "last_modified_date" : null, "prop" : [ ] }, { "id" : 2, "create_date" : "2016.01.12 12:24:28", "last_modified_date" : null, "prop" : [ ] }, { "id" : 3, "create_date" : "2016.01.12 12:24:29", "last_modified_date" : null, "prop" : [ ] } ], "last" : true, "total_pages" : 1, "total_elements" : 3, "size" : 50, "number" : 0, "sort" : null, "first" : true, "number_of_elements" : 3 } We see here three unpretentious objects on one page. Question: How can I take Page T> from this Jason using the Spring Rest Template (preferably)?