如何在@RestController中使用Pageable?

时间:2017-11-03 02:09:56

标签: spring spring-mvc pagination spring-rest

我知道Pageable来自spring-data-域。

org.springframework.data.domain.Pageable中有直接使用@RestController的优雅方法吗?

我试过了。

@RequestMapping(method = RequestMethod.GET,
                path = "pageable",
                produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Pageable> readPageable(@NotNull final Pageable pageable) {
    return ResponseEntity.ok(pageable);
}

结果不是我的预期。

...: ~ $ curl -X GET --header 'Accept: application/json' 'http://localhost:8080/.../pageable?limit=1&offset=1' | python -mjson.tool
...
{
    "offset": 0,
    "pageNumber": 0,
    "pageSize": 20,
    "sort": null
}

1 个答案:

答案 0 :(得分:8)

它应该不是Pageable而是Page。

public Page<YourEntityHere> readPageable(@NotNull final Pageable pageable) {
    return someService.search(pageable);
}

Pageable是请求方,其中包含您需要的内容。但Page包含结果。

参见例如the link