用于迭代会话变量的 strut 标签

发布于 2024-11-08 06:57:06 字数 502 浏览 0 评论 0原文

我正在设计一个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 技术交流群。

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

发布评论

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

评论(1

孤君无依 2024-11-15 06:57:06

在 Struts2/OGNL 标签中,您可以使用 map[key] 访问映射中的值。

参考:

关于格式化,您能否准确指定需要格式化的内容?

In Struts2/OGNL tags, you can access values from a map using map[key].

Reference:

Regarding formatting, would you able to specify exactly what you need to format?

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