diff --git a/2.2.x/reference/html/index.html b/2.2.x/reference/html/index.html
index bbb70d06..0a0658dd 100644
--- a/2.2.x/reference/html/index.html
+++ b/2.2.x/reference/html/index.html
@@ -176,6 +176,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/2.2.x/reference/html/spring-cloud-openfeign.html b/2.2.x/reference/html/spring-cloud-openfeign.html
index bbb70d06..0a0658dd 100644
--- a/2.2.x/reference/html/spring-cloud-openfeign.html
+++ b/2.2.x/reference/html/spring-cloud-openfeign.html
@@ -176,6 +176,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);
}