diff --git a/src/org/redkale/boot/watch/FilterWatchService.java b/src/org/redkale/boot/watch/FilterWatchService.java index 054292a80..b34585372 100644 --- a/src/org/redkale/boot/watch/FilterWatchService.java +++ b/src/org/redkale/boot/watch/FilterWatchService.java @@ -47,4 +47,34 @@ public class FilterWatchService extends AbstractWatchService { } return RetResult.success(); } + + @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(); + } } diff --git a/src/org/redkale/boot/watch/TransportWatchService.java b/src/org/redkale/boot/watch/TransportWatchService.java index c2e1111b9..ffc61e157 100644 --- a/src/org/redkale/boot/watch/TransportWatchService.java +++ b/src/org/redkale/boot/watch/TransportWatchService.java @@ -135,4 +135,24 @@ public class TransportWatchService extends AbstractWatchService { } return RetResult.success(); } + + @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(); + } }