需要使用struts 1.3在jsp页面上显示数据

发布于 2024-10-19 21:37:43 字数 66 浏览 3 评论 0原文

我正在尝试从表中读取数据并将其显示给用户。

有人能告诉我如何使用 struts 1.3 做到这一点吗?

I am trying to read data from a table and display it to the user .

Can anybody tell how to do it using struts 1.3 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

欢你一世 2024-10-26 21:37:43
  1. 编写一个扩展 Struts 的 Action 类的类。此类以 List 的形式从数据库中提取数据。将此数据作为请求属性传递,request.setAttribute("myList", list)。返回“成功”。

  2. struts-config.xml 中,将此 Action 类映射到“成功”时的 JSP。请求将转发到 JSP。

  3. 在JSP中,通过request.getAttribute("myList")从请求中获取列表。遍历列表并打印 List

您需要研究这个: http://struts.apache.org/1.x /userGuide/index.html

  1. Write an class extending Struts' Action class. This class pulls the data from Database as a List. Pass this data as request attribute, request.setAttribute("myList", list). Return "success".

  2. In your struts-config.xml, map this Action class to a JSP on "success". The request will be forwarded to the JSP.

  3. In the JSP, get the list from request by request.getAttribute("myList"). Iterate through the list and print the List.

You need to study this: http://struts.apache.org/1.x/userGuide/index.html

爱你是孤单的心事 2024-10-26 21:37:43

(编辑:刚刚注意到这是一个 2 年前的问题)

除非需要,否则不要使用 struts 标签。这可以通过 jstl/el 来完成。
因此,在您的 Action 类上,您将具有如下内容:

List<Map<?, ?>> listOfHashMaps = new ArrayList<Map<?, ?>>();
request.setAttribute("listOfHashMaps", listOfHashMaps);

在您的 jsp 中:

<c:forEach var="hashMap" items="listOfHashMaps">
    ${hashMap[someInteger]} <%-- To get the value associated with 'key' --%>
</c:forEach>

您还可以使用以下方式访问键/值:

${hashMap.key}
${hashMap.value}

分别。

(Edit: Just noticed this is a 2 year old question)

Don't use the struts tags unless you NEED to. This can be accomplished with jstl/el.
So on your Action class you would have something like this:

List<Map<?, ?>> listOfHashMaps = new ArrayList<Map<?, ?>>();
request.setAttribute("listOfHashMaps", listOfHashMaps);

In your jsp:

<c:forEach var="hashMap" items="listOfHashMaps">
    ${hashMap[someInteger]} <%-- To get the value associated with 'key' --%>
</c:forEach>

You can also access the keys/values with:

${hashMap.key}
${hashMap.value}

Respectively.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文