示例#1
0
 @RequestMapping(value = "/cars/delete", method = RequestMethod.POST)
 public String delete(int carId) {
   carDao.delete(carId);
   return "redirect:/cars";
 }