Commit c28b3252 by Spencer Gibb

added a get to the same path as a delete

parent f79166cb
......@@ -28,6 +28,11 @@ public class SampleZuulProxyApplication {
return "Deleted!";
}
@RequestMapping(value="/local/self/{id}", method=RequestMethod.GET)
public String get() {
return "Gotten!";
}
@RequestMapping("/")
public String home() {
return "Hello world";
......
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