From 031309b105391bef071c95c7e0609cf341369765 Mon Sep 17 00:00:00 2001 From: Redkale <8730487+redkale@users.noreply.github.com> Date: Sat, 22 Dec 2018 15:08:56 +0800 Subject: [PATCH] --- .../boot/watch/SourceWatchService.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/org/redkale/boot/watch/SourceWatchService.java b/src/org/redkale/boot/watch/SourceWatchService.java index 9b6199970..f354af155 100644 --- a/src/org/redkale/boot/watch/SourceWatchService.java +++ b/src/org/redkale/boot/watch/SourceWatchService.java @@ -89,4 +89,34 @@ public class SourceWatchService extends AbstractWatchService { return new RetResult(RET_SOURCE_METHOD_INVOKE_NOT_EXISTS, "poolsource invoke method('change') error"); } } + + @RestMapping(name = "test1", auth = false, comment = "预留") + public RetResult test1() { + return RetResult.success(); + } + + @RestMapping(name = "test2", auth = false, comment = "预留") + public RetResult test2() { + return RetResult.success(); + } + + @RestMapping(name = "test3", auth = false, comment = "预留") + public RetResult test3() { + return RetResult.success(); + } + + @RestMapping(name = "test4", auth = false, comment = "预留") + public RetResult test4() { + return RetResult.success(); + } + + @RestMapping(name = "test5", auth = false, comment = "预留") + public RetResult test5() { + return RetResult.success(); + } + + @RestMapping(name = "test6", auth = false, comment = "预留") + public RetResult test6() { + return RetResult.success(); + } }