Action 类是否有像 formbean 一样的作用域
这是关于 Struts1.x 的
Action
类是否有像 form beans 那样的作用域?- 是否为每个用户会话创建一个新的
Action
实例? - 如果两个用户同时使用相同的操作类,他们将拥有两个不同的操作类对象,还是相同的操作类对象?
提前致谢。
This is regarding Struts1.x
- Do
Action
classes have a scope like form beans do? - Is a new
Action
instance created for each user session? - 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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).