我试图从“应用程序”对象(在
javascript中使用jquery)中获取每个值,这些值主要包含字符串和布尔属性,但也包含List.我想在服务器端获取它,java.
这里我要做的是获取字符串和布尔值:
requete = clientRestApplication.saveApplication.read(application.id, application);
requete.done();
申请是我的对象当然.它包含一个名为填充字符串的邮件的数组.
@RequestMapping(value = "/enregistrerApplication/id/{id}", method = RequestMethod.GET)
@ResponseBody
public void EnregistrerApplication(@PathVariable Long id, String nom, String acronyme, Integer idWebGD, Boolean estProgressWindows,
Boolean estProgressUnix, Boolean estDelphi, String cheminPatchWin, String cheminPatchUnix,
String cheminOutilsCompileWin, String cheminOutilsCompileUnix, String serveurCVS, String loginCVS,
String mdpCVS, boolean versionEncours, ArrayList mails) { ... }
从这里我可以使用每一个属性来做我想要的,但无论如何都无法得到我的数组……
我可能做错了什么,有人可以帮忙吗?非常感谢.