@RequestMapping(value = "/idea/{ideaNumber}/comment", method = RequestMethod.POST)
 public @ResponseBody boolean ideaComment(
     @PathVariable("ideaNumber") String ideaNumber, @RequestBody Comment comment) {
   return ideaService.comment(ideaNumber, comment);
 }