У меня есть сервлет, который превращает строку в JSONObject, как показано ниже:
JSONObject myObject = new JSONObject("{'someKey':'someValue'}");
//sending it to the JSP with RequestDispatcher
request.setAttribute("jsonObject", myObject)
requestDispatcher.forward(request, response);
Теперь в JSP я пытаюсь получить к нему доступ, используя выражение EL ${jsonObject.someKey}
, и получаю следующую ошибку:
javax.el.PropertyNotFoundException: The class 'org.json.JSONObject' does not have the property 'someKey'.