I am displaying a list of Java objects of type documentation as follows
<c:forEach var="document" items="${documentationList}">
<tr>
<td valign="top" >${document.documentation}</td> <!-- c:out is not used here because, it is escaping HTML characters -->
<td width="75" valign="top"><a href="" ><c:out value="${document.stateCode}" /></a></td>
</c:when>
<td width="75" valign="top"><c:out value="${document.type}" /></td>
</tr>
</c:forEach>
State code is displayed as hyperlink. what i am trying to do is, when the link is clicked i want to pass that particular java object('document') to java controller and then display more detailed information on the new page. is there a way to this in spring ?( i am using spring MVC).