added a get to the same path as a delete

This commit is contained in:
Spencer Gibb
2014-11-26 11:38:51 -07:00
parent f79166cb8e
commit c28b3252fb

View File

@@ -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";