我正在使用Spring MVC3。从我的控制器中设置值

mav = new ModelAndView();
mav.setViewName("reports");
mav.addObject("ReportList", ReportList);
return mav;


在JSP中

<c:forEach var="list" items="${ReportList}">
   $(list.name)
</c:forEach>


ReportList的大小为7。ReportList是Report类的列表,其名称为具有正确的getter和setter的实例。

当我在浏览器中运行它时,它会显示$(list.name) 7次。

它没有显示专有名称。

最佳答案

这些括号:{}

<c:forEach var="list" items="${ReportList}">
   ${list.name}
</c:forEach>

关于java - 在<c:forEach>循环中显示值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7565469/

10-11 23:31