Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public void createContact(@RequestBody Contact c) {
  2.     save(c);
  3. }
  4.  
  5. @ResponseBody
  6. public Contact getContact(Long id) {
  7.      Contact c = getContact(id);
  8.      return c;
  9. }