de-6ren">
gpt4 book ai didi

java - 从 JSP 页面中删除 Java 代码

转载 作者:行者123 更新时间:2023-12-02 04:50:59 25 4
gpt4 key购买 nike

我使用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页面。如何实现?

感谢您的帮助!

最佳答案

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

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

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

关于java - 从 JSP 页面中删除 Java 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29243151/

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