使用 spring 控制器和不同的类在 jsp 中渲染数据

发布于 2024-10-16 12:30:31 字数 174 浏览 0 评论 0原文

我想呈现数据,

这就是我的 jsp 页表的样子 这就是表格的样子

我如何实现这一点,

请帮助我,

这给我带来了很多困惑,要定义多少个类以及哪些字段。

谢谢

i want to render data

this is how my jsp page table look like
 this is what a table look like

how i achieve this,

please help me,

it creates a lot of confusion for me, that how many classes are to be define and what are the fields.

thanks

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

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

发布评论

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

评论(1

篱下浅笙歌 2024-10-23 12:30:31

您的数据很可能来自数据库,这是返回的 javabean 的 List 类型。

假设这是:

List<MyObjects> objects

您需要在控制器级别设置它:

@RequestMapping(value="/table")
public ModelAndView renderTable() {
    ModelAndView mv = new ModelAndView("/table"); 
    mv.add("objects",objects);
    return mv;
}

现在这是您在 JSP 上呈现它的方式:

<c:if test="${not empty objects}">
    <table>
        <c:forEach var="o" items="${objects}">
            <tr>
                <td>${o.id}</td>
                <td>${o.name}</td>
                <td>${o.descriptio}</td>   
            </tr>
        </c:forEach>
    </table>
</c:if>

您可以在此处阅读更多信息:
http://static.springsource.org/spring /docs/3.0.1.RELEASE/reference/html/view.html

Most likely your data is coming from database and this is kind of List of javabeans returned.

Let's say this is:

List<MyObjects> objects

You need to set it in controller level:

@RequestMapping(value="/table")
public ModelAndView renderTable() {
    ModelAndView mv = new ModelAndView("/table"); 
    mv.add("objects",objects);
    return mv;
}

Now this is the way you render it on the JSP:

<c:if test="${not empty objects}">
    <table>
        <c:forEach var="o" items="${objects}">
            <tr>
                <td>${o.id}</td>
                <td>${o.name}</td>
                <td>${o.descriptio}</td>   
            </tr>
        </c:forEach>
    </table>
</c:if>

You can read about it more here:
http://static.springsource.org/spring/docs/3.0.1.RELEASE/reference/html/view.html

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