From f5283f6fabfd7ebca83cdb2468b0fc067c97b1de Mon Sep 17 00:00:00 2001 From: buildmaster Date: Mon, 11 May 2020 11:40:12 +0000 Subject: [PATCH] Sync docs from master to gh-pages --- reference/html/index.html | 3 +++ reference/html/spring-cloud-openfeign.html | 3 +++ 2 files changed, 6 insertions(+) diff --git a/reference/html/index.html b/reference/html/index.html index 0dc3492e..459de534 100644 --- a/reference/html/index.html +++ b/reference/html/index.html @@ -195,6 +195,9 @@ public interface StoreClient { @RequestMapping(method = RequestMethod.GET, value = "/stores") List<Store> getStores(); + @RequestMapping(method = RequestMethod.GET, value = "/stores") + Page<Store> getStores(Pageable pageable); + @RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json") Store update(@PathVariable("storeId") Long storeId, Store store); } diff --git a/reference/html/spring-cloud-openfeign.html b/reference/html/spring-cloud-openfeign.html index 0dc3492e..459de534 100644 --- a/reference/html/spring-cloud-openfeign.html +++ b/reference/html/spring-cloud-openfeign.html @@ -195,6 +195,9 @@ public interface StoreClient { @RequestMapping(method = RequestMethod.GET, value = "/stores") List<Store> getStores(); + @RequestMapping(method = RequestMethod.GET, value = "/stores") + Page<Store> getStores(Pageable pageable); + @RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json") Store update(@PathVariable("storeId") Long storeId, Store store); }