Accessing RepositoryItems with JSTL
by Frank Kim on May.09, 2008, under JSTL, Page Development, Repository
Often we are accessing repository items in a JSP page like this.
<dspel:droplet name="RQLQueryForEach" var="query">
<dspel:param name="repository" bean="/betweengo/repository/Repository"/>
<dspel:param name="itemDescriptor" value="Account"/>
<dspel:param name="queryRQL" value="ALL"/>
<dspel:setvalue param="account" paramvalue="element"/>
<dspel:oparam name="output">
<dspel:valueof param="account.name"/><br/>
</dspel:oparam>
</dspel:droplet>
With JSTL we could try to display the name like this.
<c:out value="${query.account.name}"/>
If you are using JSP 2.0 you can display it even more simply.
${query.account.name}
However since account is a RepositoryItem object and there is no get method for the name property (i.e. it’s not a JavaBean object) the above will fail and produce an exception.
To get around this you can extend ATG’s RQLQueryForEach class by overriding the protected setElementParameter. In addition to setting the element parameter in the request you can set a new parameter which we will call “item”. This item is of class atg.beans.DynamicBeanMap and wraps a RepositoryItem.
public class RQLQueryForEachEL extends RQLQueryForEach {
protected void setElementParameter(DynamoHttpServletRequest pRequest,
String pElementName, Object pValue) {
super.setElementParameter(pRequest, pElementName, pValue);
DynamicBeanMap itemBean = new DynamicBeanMap(pValue, true);
pRequest.setParameter("item", itemBean);
}
}
Now we can access the repository item with JSTL like this.
${query.item.name}
Related posts:
1 Trackback or Pingback for this entry
February 18th, 2009 on 7:26 AM
[...] I posted about using the atg.beans.DynamicBeanMap class to wrap a RepositoryItem so that it is accessible via JSTL. However it turns out this is not a great [...]