用于迭代会话变量的 strut 标签
我正在设计一个Web应用程序,我想在JSP页面上使用最多的struts标签而不是java代码。
就我而言,
其中一个操作是从 JSP >> 获取输入根据输入从数据库获取数据>>用输出 bean 填充 Hashmap>>将 hashmap 放入会话>>>在 JSP 上迭代 hashmap
为什么我需要 hashmap :在结果 JSP 上,我正在生成以 Hashmap 键作为参数的链接。这样下一步就可以轻松地从 HashMap 中获取 bean,而无需请求 DB 或任何迭代。
此外:在结果JSP上显示数据之前,我需要格式化一些数据。我无法在填充哈希图时格式化这些数据,因为可能需要进一步将这些数据存储回数据库。
我如何使用逻辑迭代器和 bean:write 标签完成上述任务?
*我不认为创建额外的表单变量会是更好的方法,而不是将结果 bean 放入会话变量中。
I am designing a web application where i want to use maximum of struts tag on JSP page instead of java code.
In my case,
one of the action is taking input from a JSP >> fetching data from db as per input >> populating Hashmap with output beans >> Putting hashmap into session >> iterating hashmap on JSP
Why i need hashmap : On the result JSP, i am generating link having Hashmap key as a parameter. So that the next action can get bean from HashMap easily without requesting to DB or any iteration.
In Addition: Before displaying data on result JSP, i require to format some of the data. I can not format this data while populating hashmap, because this data might be required further to store back into db.
How can i do above task using logic iterator and bean:write tags?
*I don't think that creating an extra form variable would be a better approach, instead of putting result bean into session variable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Struts2/OGNL 标签中,您可以使用
map[key]
访问映射中的值。参考:
iterator
标签 参考和示例关于格式化,您能否准确指定需要格式化的内容?
In Struts2/OGNL tags, you can access values from a map using
map[key]
.Reference:
iterator
tag reference and examplesRegarding formatting, would you able to specify exactly what you need to format?