@RequestMapping(value = "/toQueryReview.do", method = RequestMethod.GET)
  public @ResponseBody Map<String, Object> toQueryReview(@RequestParam("matchid") int matchid) {

    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
    MatchInfoDao dao = (MatchInfoDao) context.getBean("matchInfoDao");
    Map<String, Object> matchReview = dao.getMatchReview(matchid);

    return matchReview;
  }