Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Struts1 ActionForm是Singleton,如果是,不同的请求属性如何存储在Struts Application中
不,ActionForms不是单例。有一个组件 ( RequestProcessor) 解析您的请求,实例化一个 new ActionForm,用请求信息尽可能地填充它,然后将其传递给Action对象(是的,Actions可以被认为是单例对象)
ActionForms
RequestProcessor
ActionForm
Action
Actions