Merge branch 'BAEL-1982' of https://github.com/neerajnyd/tutorials into BAEL-1982

This commit is contained in:
Neeraj Yadav 2018-07-11 18:11:56 +05:30
commit 1fafe77523

View File

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