From 12566ca3f22463078fde377f365b5dfaeab4b008 Mon Sep 17 00:00:00 2001 From: buildmaster Date: Mon, 11 May 2020 11:36:28 +0000 Subject: [PATCH] Sync docs from 2.2.x to gh-pages --- 2.2.x/reference/html/index.html | 3 +++ 2.2.x/reference/html/spring-cloud-openfeign.html | 3 +++ 2 files changed, 6 insertions(+) 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); }