Spring pagination - request parameters
问题 My REST contorller: @GetMapping("/test") public Page<MyObject> pathParamTest(Pageable pageable) { return myService.getPage(pageable); } I send a request like following: localhost:8091/endpoint/test?page=0&size=3&sort=id&direction=DESC It's my response from server: { "content": [ { "id": 1 }, { "id": 2 }, { "id": 3 } ], "last": true, "totalPages": 1, "totalElements": 3, "first": true, "sort": [ { "direction": "ASC", "property": "id", "ignoreCase": false, "nullHandling": "NATIVE", "descending":