@RequestMapping(value = "/toLoadMatchInfoAndFeature.do", method = RequestMethod.GET)
  public @ResponseBody InfoAndFeature toLoadMatchInfoAndFeature(
      @RequestParam("matchid") int matchid) {

    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
    MatchInfoDao dao = (MatchInfoDao) context.getBean("matchInfoDao");
    InfoAndFeature infoAndFeature = dao.loadMatchInfoAndFeature(matchid);

    return infoAndFeature;
  }