@RequestMapping("/1/boards/{id}")
 @ResponseBody
 public Object getBoard(@PathVariable("id") String id) {
   return boardService.getBoard(id);
 }