Advertisement
Guest User

java1

a guest
Sep 4th, 2013
3,214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement