我知道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
}
答案 0 :(得分:8)
它应该不是Pageable而是Page。
public Page<YourEntityHere> readPageable(@NotNull final Pageable pageable) {
return someService.search(pageable);
}
Pageable是请求方,其中包含您需要的内容。但Page包含结果。
参见例如the link