コード例 #1
0
ファイル: WebModuleAjax.java プロジェクト: israelz11/nube
 @RequestMapping(value = "/config/catalogo/module_get", method = RequestMethod.GET)
 public @ResponseBody Map<String, Object> getallConfigModules() {
   Map<String, Object> a = new HashMap<String, Object>();
   a.put("aaData", servicioConfigModule.getAll());
   return a;
 }