i am using spring frame work with jsp.
<%@ taglib prefix="json" uri="
http://www.atg.com/taglibs/json" %>
<%@ taglib prefix="c" uri="
http://java.sun.com/jstl/core"%>
<json:object>
<json:property name="identifier" value="${
sandbox.name}"/>
<json:property name="label" ><c:out value="${sandbox.size}"/>
<json:array name="childrens" var="child" items="$
{sandbox.children}">
<json:object>
<json:property name="name" ><c:out value="${
child.name}"/></
json:property>
<json:property name="type" value="folder"></json:property>
</json:object>
</json:array>
</json:object>
i am getting error as
javax.servlet.jsp.JspException: An error occurred while evaluating
custom action attribute "value" with value "${item.fileName}": Unable
to find a value for "fileName" in object of class "java.lang.String"
using operator "." (null).