struts 2操作类将初始化多少次?
我的问题是,在struts 2中action类会初始化多少次?我的意思是,Servlet 仅在第一次初始化,之后在每个请求上都会为新请求分配新线程。 Struts 2 操作的工作方式与 servlet 相同,还是会在每个新请求时初始化?
My question is that, how many time action class will initialized in struts 2? I mean that Servlet will initialized only first time and after that on every request new thread will be allocated for new request. Struts 2 action works same like servlet or it will initialized on every new request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个新请求都会创建一个新操作。如果操作具有操作类,则在该请求期间将创建一个新实例。
A new action is created on every new request. If the action has an Action Class then a new instance will be created during that request.