Esempio n. 1
0
 @RequestMapping(value = "hunter/addressbooks/resumes/{id}", method = RequestMethod.POST)
 public Object insertResumes(@PathVariable Long id, @RequestParam Long rid) {
   try {
     addressbookService.insertAddressbookResumes(id, rid);
   } catch (DuplicateKeyException e) {
     //
   }
   return true;
 }