Beispiel #1
0
 @RequestMapping(value = "/delete/{product_id}", method = RequestMethod.POST)
 public @ResponseBody void delete(@PathVariable("product_id") int productId) {
   productService.delete(productId);
 }