次のようなPagedResourceを返すメソッドを持つコントローラーがあります。
@RequestMapping(value = "search/within", method = RequestMethod.POST)
public @ResponseBody PagedResources within(@RequestBody GeoJsonBody body,
Pageable pageable, PersistentEntityResourceAssembler asm) {
// GET PAGE
return pagedResourcesAssembler.toResource(page, asm);
}
ここで、そのメソッドをルートリソースへのリンクとして追加するため、次のようにします。
public RepositoryLinksResource process(RepositoryLinksResource repositoryLinksResource) {
repositoryLinksResource.add(linkTo(methodOn(ShipController.class).within(null, null, null)).withRel("within"));
return repositoryLinksResource;
}
これは機能し、リンクを取得しますが、ページネーションパラメータなしでリンクを追加します。したがって、次のようになります。
"within": {
"href": "http://127.0.0.1:5000/search/within"
},
そして私はそれを次のように変えたいです:
"within": {
"href": "http://127.0.0.1:5000/search/within{?page, size}"
},
This stackoverflowに関する以前の質問は、修正後 GitHubの対応する問題 はデフォルトで機能するはずであるが、機能しないことを示唆しています。
何が悪いのですか?
PagedResourcesAssembler
を使用して成功しました。エンティティがMyEntity
であるとしましょう。 within
メソッドはHttpEntity<PagedResources<MyEntity>>
を返します。
within
メソッドは、以下に示す例のようになります。
@RequestMapping(value = "search/within", method = RequestMethod.POST)
@ResponseBody
public HttpEntity<PagedResources<MyEntity>>
within(@RequestBody GeoJsonBody body,Pageable pageable,
PagedResourcesAssembler assembler) {
// GET PAGE
Page<MyEntity> page = callToSomeMethod(pageable);
return new ResponseEntity<>(assembler.toResource(page), HttpStatus.OK);
}
ここ は簡単な例です。この例では、応答は次のようになります。
{
"_embedded": {
"bookList": [
{
"id": "df3372ef-a0a2-4569-982a-78c708d1f609",
"title": "Tales of Terror",
"author": "Edgar Allan Poe"
}
]
},
"_links": {
"self": {
"href": "http://localhost:8080/books?page=0&size=20"
}
},
"page": {
"size": 20,
"totalElements": 1,
"totalPages": 1,
"number": 0
}
}
ページ分割されたリンクを手動で作成することに興味がある場合は、使用できるコードスニペットを以下に示します。
Page<MyEntity> page = callToSomeMethod(pageable);
ControllerLinkBuilder ctrlBldr =
linkTo(methodOn(ShipController.class).within(body, pageable, asm));
UriComponentsBuilder builder = ctrlBldr.toUriComponentsBuilder();
int pageNumber = page.getPageable().getPageNumber();
int pageSize = page.getPageable().getPageSize();
int maxPageSize = 2000;
builder.replaceQueryParam("page", pageNumber);
builder.replaceQueryParam("size", pageSize <= maxPageSize ?
page.getPageable().getPageSize() : maxPageSize);
Link selfLink =
new Link(new UriTemplate(builder.build().toString()), "self");