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

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

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

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