コード例 #1
0
ファイル: LocationController.java プロジェクト: aaadipop/ucj
 @RequestMapping("/ad-deleteLocation/{id}")
 public String getDeleteLocation(@PathVariable("id") int id) {
   locationService.delete(id);
   return "redirect:/ad-searchLocation?deleteSuccess=true";
 }