diff --git a/docs/src/main/asciidoc/spring-cloud-openfeign.adoc b/docs/src/main/asciidoc/spring-cloud-openfeign.adoc index befcb323..8e0f4ec3 100644 --- a/docs/src/main/asciidoc/spring-cloud-openfeign.adoc +++ b/docs/src/main/asciidoc/spring-cloud-openfeign.adoc @@ -47,6 +47,9 @@ public interface StoreClient { @RequestMapping(method = RequestMethod.GET, value = "/stores") List getStores(); + @RequestMapping(method = RequestMethod.GET, value = "/stores") + Page getStores(Pageable pageable); + @RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json") Store update(@PathVariable("storeId") Long storeId, Store store); }