struts 2中如何设置动作范围
在 struts 中,操作范围被定义为
<action scope="session" .../>
How do you set the range in Struts2?
In struts the action scope was defined as
<action scope="session" .../>
How do you set the scope in Struts2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
struts2 中并没有真正的直接等效项。 在 struts1 中,该范围指的是关联的 ActionForm。
通常,如果您想做类似的事情,您可以通过 spring、guice 或 struts2 配置创建一个会话范围的 bean,并将其注入到您的操作中。
或者您可以实现 SessionAware,并自己管理您想要会话支持的属性。
There isn't really a direct equivalent in struts2. In struts1, that scope referred to the associated ActionForm.
Typically if you wanted to do something similar you'd create a session scoped bean either through spring, guice or struts2 configuration, and inject it into your action.
Or you could implement SessionAware, and manage the properties that you want to be session backed yourself.