Spring MVC 中的 Struts ActionMessages 相当于什么?

发布于 2024-08-27 02:47:07 字数 373 浏览 4 评论 0原文

如果您对此有任何想法,请告诉我。

谢谢

编辑

ActionMessages 是什么?

ActionMessages 基本上是一个包含要在 JSP 页面上显示的消息的类。消息可以添加到 Action(控制器)类的 ActionMessages 中。在 JSP 上,消息要显示的位置由 标签标记。因此,您的所有消息都会自动呈现在该特定位置。

这些消息通常是一些用户操作后需要出现的反馈文本。例如,如果用户创建新记录,反馈消息可以是“记录创建成功!”。

Please let me know if you have any idea about it.

Thanks

EDIT

What ActionMessages is?

ActionMessages is basically a class that holds messages that you want to display on a JSP page. Messages can be added in ActionMessages in an Action(controller) class. On the JSP, the position where the messages are intended to be displayed, is marked by <html:messages/> tag. Hence, all your messages are rendered automatically on that specific position.

These messages are usually feedback texts that need to appear after some user actions. For example, if the user creates a new record, a feedback message could be "Record created successfully!".

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

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

发布评论

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

评论(1

記憶穿過時間隧道 2024-09-03 02:47:08

Spring 有一个 Errors 类(请参阅 第 5 章。验证、数据绑定、BeanWrapper 和 PropertyEditors)报告...错误,但没有 Struts ActionMessage 的直接等效项(也可用于常规消息,不仅仅是错误)。有一个与此相关的 Jira 问题:SPR-2657

Spring has an Errors class (refer to the Chapter 5. Validation, Data-binding, the BeanWrapper, and PropertyEditors) to report... errors but no direct equivalent of Struts ActionMessage (can be used for regular messages too, not only errors). There is a Jira issue about this: SPR-2657.

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