Action 类是否有像 formbean 一样的作用域

发布于 2024-12-14 03:22:08 字数 206 浏览 0 评论 0原文

这是关于 Struts1.x 的

  1. Action 类是否有像 form beans 那样的作用域?
  2. 是否为每个用户会话创建一个新的 Action 实例?
  3. 如果两个用户同时使用相同的操作类,他们将拥有两个不同的操作类对象,还是相同的操作类对象?

提前致谢。

This is regarding Struts1.x

  1. Do Action classes have a scope like form beans do?
  2. Is a new Action instance created for each user session?
  3. If two users use the same action class at a time, will they have two different action class objects, or the same one?

Thanks in advance.

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

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

发布评论

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

评论(1

枫以 2024-12-21 03:22:08

1) 操作的作用域决定其操作形式是存储在会话作用域还是请求作用域中。所以不,与它的 form bean 分开,该操作没有范围。

2) 不,Action 类实例是在应用程序启动时创建的,并且是共享的。

3)针对相同操作(意味着它们具有相同路径)的请求将被发送到相同的 Action 对象。作为单独的方法调用,它们将获得该方法本地变量的单独副本,但它们将看到相同的实例变量(可能存在竞争条件)。

1) The scope on an action decides whether its action form is stored in session- or request-scope. So no, separate from its form bean the action doesn't have a scope.

2) No, Action class instances are created on application start-up and are shared.

3) Requests targeting the same action (meaning they have the same path) will be sent to the same Action object. Being separate method invocations they will get separate copies of variables local to the method, but they will see the same instance variables (with potential for race conditions).

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