@RequestMapping("update/{id}")
 public void update(Model model, @PathVariable("id") Long id) {
   Profile o = profileService.findProfileById(id);
   model.addAttribute("o", o);
 }