2

这是我第一次在这里提问。

我必须在 JSP 中显示一个列表,该列表是使用 Spring ModelMap 对象访问那里的。表单中的输出是大括号中的循环 46 次,46 次是列表中字符串的数量。

请帮助我遍历 JSP 中的列表。提前致谢。

<form:form commandName="dmnListRef" name="DMN_LIST_REF"  method="POST" modelAttribute="dmnListRef" action="DMN_LIST_REF.html">
       <c:forEach items="${dmnListRef.listString}" var="loop">
            <tr>
                 <td>${loop}</td>
            </tr>
        </c:forEach>
            </form:form

我有一颗豆子

public class DmnListRefVO implements Serializable {

    private List<String> listString=new ArrayList<String>();

}

还有一个控制代码,我将 lsit 发送到 ModelMap

private void fillModelData(ModelMap modelMap) {
    logger.debug("==============Entered the fillModelData dmnListRef======\n");
    DmnListRefVO dmnListRef = dmnListRefService.findAllDmnListRef();

    modelMap.addAttribute("dmnListRef", dmnListRef);

    logger.debug("==============Exiting the fillModelData dmnListRef=Lisof Headers===="+dmnListRef.getListString());            
    logger.debug("==============Exiting the fillModelData dmnListRef ModelMap======\n"+modelMap);

}
4

0 回答 0