Пример #1
0
  @RequestMapping("/jogo/fazerShow")
  public ModelAndView fazerShow() throws ServletException, IOException {

    Map<String, Object> myModel = new HashMap<String, Object>();

    myModel.put("result", (new JSONObject(service.fazerShow())).toString());

    return new ModelAndView("servico.jsp", "model", myModel);
  }