如何在jsp中显示List <object>包含

时间:2017-10-28 22:33:27

标签: java-ee

我无法在Spring MVC中显示从控制器到JSP页面的数据。我是Spring的新手。

这是我的控制者:

@RequestMapping(value={"/employee"}, method=RequestMethod.GET)
    public String listAllemployee(ModelMap model){
        List<Memployee> Memployee=empService.getAllEmployee();
        model.addAttribute("Memployee", Memployee);
        return "list-emp";
    }

这是我的JSP页面:

<c:forEach items="${Memployee}" var="emp">
    <tr>
      <th scope="row">${emp.id}</th>
      <td>${emp.first_name}</td>
      <td>${emp.last_name}</td>
      <td>${emp.username}</td>
      <td><a href="">Edit</a> || <a href="">View</a> || <a href="">Delete</a> || <a href="">Add</a></td>
    </tr>
</c:forEach>

我该如何解决这个问题?提前致谢

0 个答案:

没有答案