struts 2中如何设置动作范围

发布于 2024-07-25 04:42:30 字数 133 浏览 2 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

如痴如狂 2024-08-01 04:42:31

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.

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