// Delete comment
 @RequestMapping(
     value = "/comment/deletecomment/comment/{commentid}/user/{userid}",
     method = RequestMethod.GET)
 public @ResponseBody boolean DeleteComment(
     @PathVariable int commentid, @PathVariable int userid) {
   return commentService.DeleteComment(commentid, userid);
 }