Added a POST with a request body and a DELETE method for HTTP with cURL demo

This commit is contained in:
Neeraj Yadav 2018-07-11 17:50:17 +05:30
parent 88f832b6b7
commit 00d62f5168

View File

@ -45,4 +45,19 @@ public class FooController {
.setName("Foo Name")
.build();
}
@RequestMapping(method = RequestMethod.POST, value = "/foos/new")
@ResponseStatus(HttpStatus.OK)
@ResponseBody
public Foo createFoo(@RequestBody final Foo foo) {
return foo;
}
@RequestMapping(method = RequestMethod.DELETE, value = "/foos/{id}")
@ResponseStatus(HttpStatus.OK)
@ResponseBody
public long deleteFoo(@PathVariable final long id) {
return id;
}
}