使用 spring 控制器和不同的类在 jsp 中渲染数据
我想呈现数据,
这就是我的 jsp 页表的样子
我如何实现这一点,
请帮助我,
这给我带来了很多困惑,要定义多少个类以及哪些字段。
谢谢
i want to render data
this is how my jsp page 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的数据很可能来自数据库,这是返回的 javabean 的
List
类型。假设这是:
您需要在控制器级别设置它:
现在这是您在 JSP 上呈现它的方式:
您可以在此处阅读更多信息:
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:
You need to set it in controller level:
Now this is the way you render it on the JSP:
You can read about it more here:
http://static.springsource.org/spring/docs/3.0.1.RELEASE/reference/html/view.html