gpt4 book ai didi

java - Spring 3.x MVC Controller :Adding attribute to Request/Session

转载 作者:行者123 更新时间:2023-11-29 07:48:29 25 4
gpt4 key购买 nike

我是 Spring 的新手,有一个与 Spring 3 MVC Controller 类相关的基本问题。

我的 Controller 中有以下方法:

@RequestMapping("/index")
public String listContacts(Map<String, Object> map) {
map.put("contacts", new EmployeeForm());
map.put("contactList", employeeService.listEmployee());
return "contacts";
}

在 JSP 文件中,我使用以下代码访问 contactList:

<c:forEach items="${contactList}" var="contact">
<tr>
<td>${contact.lastname}, ${contact.firstname} </td>
<td>${contact.email}</td>
<td>${contact.telephone}</td>
<td><a href="delete/${contact.id}">delete</a></td>
</tr>
</c:forEach>

我的困惑:

我没有在我的 Controller 类的 session 或请求属性中添加 contactList,那么我如何使用 ${contactList} 在 JSP 文件中访问相同的内容> ?

请澄清。

最佳答案

Controller 处理程序方法中的 Map 参数有效地用作模型属性的映射。

在呈现 View 之前,模型属性(通常)添加为 HttpServletRequest 属性。

这在文档中有解释 here .

The following are the supported method arguments:

  • java.util.Map / org.springframework.ui.Model / org.springframework.ui.ModelMap for enriching the implicit model that is exposed to the web view.

关于java - Spring 3.x MVC Controller :Adding attribute to Request/Session,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23369634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com