我工作这个jsp,servlet和struts。 (Jsp版本2.0,Servlet 2.4,Struts 1)。
在另一个循环中有一个“ for”循环。

...
<%
    String[] profileNames = { "Page", "Report", "XML API" };
    for (String profileName : profileNames) {

        LRUCache profile = ObjectStore.getStore(profileName + " Profile");
        pageContext.setAttribute("profile", profile);
        pageContext.setAttribute("profileName", profileName);
%>

<table class="sortable" id="<%=profileName%>">
    <tr class=title>
        <th class=contentTable>description</th>
        <th class=contentTable>qty</th>
    </tr>
    <c:forEach var="profile" items="${profileItems}">
        <tr>
            <td>${profile.object.description}</td>
            <td>${profile.object.qty}</td>
        </tr>
    </c:forEach>
</table>
<%
    }
%>


我需要没有Java代码的jsp页面。如何执行呢?

感谢您的任何帮助!

最佳答案

在Servlet上发送您当前在pageContext中放入的相同属性:profileprofileName(或用于处理请求/响应的任何其他类似技术)。

类似于:Servlet类上的request.setAttribute("key", value);

更新:我在这里进行了快速搜索,您可能真的想看看这个one

09-30 18:05