如何在struts 2中显示从db到jsp页面的多行

发布于 2024-10-27 08:46:53 字数 63 浏览 2 评论 0原文

我是struts 2的新手,我想将数据库表中的多行显示到jsp文件中。如何传递或设置属性来获取jsp页面中的行。

I am a newbie in struts 2, I want to display multiple rows from a database table to a jsp file. How to pass or set the properties to get the the rows in jsp page.

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

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

发布评论

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

评论(1

一生独一 2024-11-03 08:46:53

这是我经常使用的方法:

public class anAction {
    private list displayList<RowBean>;

    ... the setter/getter for displayList and get the rows from JDBC resultset into the displayList somewhere in the code...
}

RowBean是一个JavaBean,对应于一行结果集。

使用以下代码段提取jsp页面上的内容:

<s:iterator value="displayList">
<tr>
<td>attribute1</td><td>attribute2</td>...<td>attributeN</td>
</tr>
</s:iterator>

其中attribute1 ... attributeN与RowBean中定义的属性相同。

希望这有帮助。

This is the method I often use:

public class anAction {
    private list displayList<RowBean>;

    ... the setter/getter for displayList and get the rows from JDBC resultset into the displayList somewhere in the code...
}

The RowBean is a JavaBean that corresponds to a row of resultset.

The use the following code segment to extract the content on the jsp page:

<s:iterator value="displayList">
<tr>
<td>attribute1</td><td>attribute2</td>...<td>attributeN</td>
</tr>
</s:iterator>

where the attribute1 ... attributeN are the same as the attributes defined in the RowBean.

Hope this helps.

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