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

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

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

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