Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. @RequestMapping(value = "...",
  2. method = RequestMethod.PATCH,
  3. consumes = "application/json",
  4. produces = "application/json")
  5. @ResponseBody
  6. public User updateUserPartial(@PathVariable("userId") String userId,
  7. @RequestBody Map<String, Object> userMap,
  8. @RequestBody User user,
  9. HttpServletResponse response) {
  10. ...
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement