Struts 动作消息
您好,我有一个 struts 1.X 应用程序,为了显示在操作类中检测到的错误,我使用:
errors.add("Error Global", new ActionMessage("some_string_in_properties_file"));
效果很好。
我的问题是,现在我需要作为错误发送到 jsp 页面的字符串中有一个会话变量(例如“您还有 3 次有效尝试”,会话变量为 3)。
我怎样才能做到这一点?
谢谢。
Hi I have a struts 1.X app, and in order to show errors detected in an action class, I use:
errors.add("Error Global", new ActionMessage("some_string_in_properties_file"));
Which works just fine.
My problem is that now the string I need to send to the jsp page as error has a session variable in it (like "You have 3 more valid attempts", being 3 the session variable).
How can I accomplish this ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 2 个参数的 ActionMessage 构造函数。根据 JavaDoc:
在您的情况下:
some_string_in_properties_file
应该如下所示:Try to use ActionMessage constructor of 2 arguments. According to JavaDoc:
In your case:
some_string_in_properties_file
should look like this: