Ich möchte JSONArray in Spring-Modellattribut hinzufügen und von ModelAndView Controller zurückgeben. Nicht wie unten zu tun. Bitte um Hilfe. Ihnen zu danken!Wie setze ich JSONArray im Modellattribut im Frühling modelandview Controller?
@RequestMapping(value = "/sample.htm", method = RequestMethod.GET)
public ModelAndView seatRequest(ModelMap model,
HttpServletRequest request,HttpServletResponse response, HttpSession session) throws JSONException, JsonProcessingException {
JSONArray jsonArray = new JSONArray();
JSONObject jsonObject = new JSONObject();
jsonObject.put("0", "val0");
jsonObject.put("1", "val1");
jsonObject.put("2", "val2");
jsonArray.put(jsonObject);
model.addAttribute("jsonData",jsonArray.toString());
return new ModelAndView("sample");