See http://www.displaytag.org/1.2/displaytag/tagreference.html for a tag reference.
You should be able to use the paramId and paramProperty attributes:
<display:column url="testAction.action" paramId="id" paramProperty="studentId" title="Map" value="Map Course"/>
This should generate a link with the following URL: testAction.action? id = if the bean has a getStudentId () method.
But overall, I prefer to create my links inside the display: column tag:
<display:table ... id="theCurrentStudent"> ... <display:column title="Map"> <a href="<c:url value="testAction.action"/> <c:param name="id" value="${theCurrentStudent.studentId}"/> </c:url>">Click here</a> </display:column> </display:table>
You can use any other tag inside the column tag to generate your link. The important thing is that the id attribute of the table tag allows you to define the pageContext variable that represents the current iteration element.
source share