return "redirect:page?view=phonebook/phonebook";
}
@RequestMapping("getContactJSON")
public @ResponseBody JSONResponse<Contact> getContactJSON(@RequestParam("id")Long id) {
Contact contact =this.contactRepository.findOne(id);
return new JSONResponse<Contact>(contact);
}