Good day,
New to Spring MVC 3.0 and I was hoping someone could point me in the right direction. I have a @Controller and a jsp. The jsp has several tables to demonstrate many-to-many relationships. What I am trying to do, is when a table item is clicked such as:
<c:forEach items=”${myList}” var=”listItem”>
<tr>
<td><a href=”<spring:url value=”/productName/${listItem.itemDescription}”/>”>${listItem.itemDescription}</a></td>
..
</tr>
This works to select the items description, but really want I want to to return the listItem object so I can use it in my controller. Unfortunately, I am not seeing the documentation on how I make this object available from the JSP table to the Controller.