xxxxxxxxxx
@PostMapping(
value = "/product",
consumes = "application/json",
produces = "application/json")
Product createProduct(@RequestBody Product body);
@DeleteMapping(value = "/product/{productId}")
void deleteProduct(@PathVariable int productId);