Commit 10afa777 by Nepxion

提供测试接口

parent 42bfc93d
...@@ -40,4 +40,9 @@ public class ARestImpl extends AbstractRestImpl { ...@@ -40,4 +40,9 @@ public class ARestImpl extends AbstractRestImpl {
return value; return value;
} }
@RequestMapping(path = "/test", method = RequestMethod.POST)
public String test(@RequestBody String value) {
return value;
}
} }
\ No newline at end of file
...@@ -40,4 +40,9 @@ public class BRestImpl extends AbstractRestImpl { ...@@ -40,4 +40,9 @@ public class BRestImpl extends AbstractRestImpl {
return value; return value;
} }
@RequestMapping(path = "/test", method = RequestMethod.POST)
public String test(@RequestBody String value) {
return value;
}
} }
\ No newline at end of file
...@@ -34,4 +34,9 @@ public class CRestImpl extends AbstractRestImpl { ...@@ -34,4 +34,9 @@ public class CRestImpl extends AbstractRestImpl {
return value; return value;
} }
@RequestMapping(path = "/test", method = RequestMethod.POST)
public String test(@RequestBody String value) {
return value;
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment