假设我在Spring Web应用程序视图中有一个对象列表。假设这些对象是论坛帖子。他们每个人都有一个链接,该链接将移动到包含该主题所有主题的页面。现在,为了列出这些主题,我需要保留所选的线程ID。包含链接的.jsp的一部分:
<h3><spring:message code="label.threadList"/></h3>
<c:if test="${!empty threadList}">
<table class="data">
<tr>
<th><spring:message code="label.threadName"/></th>
<th><spring:message code="label.threadDescription"/></th>
<th><spring:message code="label.threadTopicCount"/></th>
<th><spring:message code="label.threadLastModified"/></th>
<th>Go</th>
</tr>
<c:forEach items="${threadList}" var="thread">
<tr>
<td>${thread.name} </td>
<td>${thread.description} </td>
<td>${thread.topics}</td>
<td>${thread.last_modified}</td>
<td><a href="topics.html">Open</a></td>
</tr>
</c:forEach>
</table>
现在,根据我的理解,我需要通过请求映射来获取参数:
@Controller
public class TopicPageController {
@RequestMapping(value = "/topics", method = RequestMethod.GET)
public ModelAndView helloWorld(@RequestParam("getId") int getId) {
System.out.println(getId); //here's when I want to see the param
return new ModelAndView();
}
}
我无法理解,正在传递它。我如何包含,点击此链接时,请求将获得该参数?
答案 0 :(得分:4)
将ID添加到链接:
<td><a href="topics.html?getId=${thread.id}">Open</a></td>