Indirection in getting attribute
I need to retrieve attribute, which name I know, but cannot set directly. I only can go to another attribute and found it out there.
Example:
<c:forEach var="Row" items="${collection}" >
<c:out value="Row.${attribute}"/>
- this gives me string 'Row.xxx', ('xxx' is attribute's value), but I needRow.getXxx();
I would write something like ${Row.${attribute}} , but it's not possible this way. Can this be done otherwise? Thanks.

