dragon-zhang commented on code in PR #3819:
URL: https://github.com/apache/shenyu/pull/3819#discussion_r942297471


##########
shenyu-client/shenyu-client-http/shenyu-client-springmvc/src/test/java/org/apache/shenyu/client/springmvc/init/SpringMvcClientEventListenerTest.java:
##########
@@ -183,4 +193,33 @@ public String test(final String hello) {
         }
     }
 
+    @RestController
+    @ShenyuRequestMapping("/order")
+    static class SpringMvcClientTestBean5 {
+
+        @ShenyuPostMapping(value = "/save")
+        public String save(@RequestBody final String body) {
+            return "" + body;
+        }
+
+        @ShenyuGetMapping("/{id}")

Review Comment:
   You need to modify the `shenyu-admin` module to adapt the writing of 
`${id}`, use regular expression to replace `/aa/${xxx}/cc` to `/aa/**/cc`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to