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); }