added a get to the same path as a delete
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user