Spring MVC 中的 Struts ActionMessages 相当于什么?
如果您对此有任何想法,请告诉我。
谢谢
编辑
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring 有一个
Errors
类(请参阅 第 5 章。验证、数据绑定、BeanWrapper 和 PropertyEditors)报告...错误,但没有 StrutsActionMessage
的直接等效项(也可用于常规消息,不仅仅是错误)。有一个与此相关的 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 StrutsActionMessage
(can be used for regular messages too, not only errors). There is a Jira issue about this: SPR-2657.